-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.54 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "phinestech.github.io",
"version": "1.0.0",
"private": false,
"keywords": [
"React - (UI Framework)",
"GraphQL - (Web Data API)",
"Apollo - (GraphQL Client/Server)",
"Next - (Routing, SSR, Hot Module Reloading, Code Splitting, Build tool uses Webpack)",
"TypeScript - (Static Types)",
"Webpack - (Module Bundler)",
"PostCSS - (CSS Processing)",
"Node.js - (Web Server)",
"Express - (Web App Server)",
"Passport - (Authentication)",
"ESLint - (Coding Best Practices/Code Highlighting)",
"Jest - (Tests)",
"Docker - (Container Deployment)",
"Yarn Package Manager - (Better Dependencies)"
],
"repository": "https://github.com/PhinesTech/PhinesTech.github.io.git",
"license": "MIT",
"author": "Adrian Darian <adarian@ucmerced.edu>",
"main": "index.js",
"scripts": {
"build": "npm run clean && next build && tsc --project tsconfig-server.json",
"build:docker": "docker build --tag 'clintonwoo/hackernews-react-graphql:latest' --rm . && docker run --rm -p 80:3000 --name hackernews-react-graphql clintonwoo/hackernews-react-graphql",
"build:prod": "cross-env NODE_ENV=production npm run build",
"build:static-website": "rm -rf build/static && cross-env NODE_ENV=production next build && next export -o build/static",
"clean": "rm -rf dist && rm -rf ./.next",
"debug": "cross-env DEBUG=app:* npm start",
"debug:all": "cross-env DEBUG=* npm start",
"debug:inspect": "cross-env DEBUG=app* TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} node --inspect -r ts-node/register server/server.ts --project tsconfig-server.json",
"debug:inspect-prod": "cross-env DEBUG=app* NODE_ENV=production node --inspect dist/server/server.js",
"lint": "eslint \"src/**/*.ts?(x)\" --ext .js,.jsx,.ts,.tsx",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"start": "nodemon",
"start:prod": "cross-env NODE_ENV=production node dist/server/server.js",
"test": "jest --config --runInBand jest.config.js",
"tsc:check": "tsc --noEmit"
},
"dependencies": {
"@apollo/react-common": "^3.1.4",
"@apollo/react-hooks": "^3.1.5",
"@apollo/react-ssr": "^3.1.5",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-fetch": "^0.7.0",
"apollo-link-http": "^1.5.17",
"apollo-server-express": "^2.13.1",
"body-parser": "^1.19.0",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.2",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"graphql": "^15.0.0",
"graphql-tag": "^2.10.3",
"graphql-tools": "^5.0.0",
"isomorphic-unfetch": "^3.0.0",
"lru-cache": "^5.1.1",
"next": "^9.4.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react": "^16.13.1",
"react-apollo": "^3.1.5",
"react-dom": "^16.13.1",
"react-render-html": "^0.6.0",
"url": "^0.11.0"
},
"devDependencies": {
"@apollo/react-testing": "^3.1.4",
"@types/async": "^3.2.3",
"@types/body-parser": "^1.19.0",
"@types/cookie": "^0.4.0",
"@types/cookie-parser": "^1.4.2",
"@types/debug": "^4.1.5",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^25.2.2",
"@types/lru-cache": "^5.1.0",
"@types/node": "^14.0.1",
"@types/passport": "^1.0.3",
"@types/passport-local": "^1.0.33",
"@types/react": "^16.9.35",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-define": "^2.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^7.0.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"jest": "^26.0.1",
"jest-enzyme": "^7.1.2",
"mockdate": "^2.0.5",
"nodemon": "^2.0.4",
"postcss": "^7.0.30",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.2"
},
"engines": {
"node": ">=10.15.3"
}
}