forked from clintonwoo/hackernews-react-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.84 KB
/
package.json
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
{
"name": "hackernews",
"version": "0.9.0",
"description": "A hacker news clone built from the ground up to demonstrate React and GraphQL",
"engines": {
"node": ">=14.16.0"
},
"scripts": {
"clean": "rm -rf dist && rm -rf ./.next",
"build:dev": "npm run clean && next build && tsc --project tsconfig-server.json",
"build": "cross-env NODE_ENV=production npm run build:dev",
"start:dev": "nodemon",
"start": "cross-env NODE_ENV=production node dist/server/server.js"
},
"author": "Clinton D'Annolfo",
"license": "Apache-2.0",
"keywords": [
"hacker-news",
"clone",
"react",
"graphql"
],
"dependencies": {
"@apollo/client": "3.3.14",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"apollo-server-express": "2.22.2",
"body-parser": "1.19.0",
"chokidar": "^3.5.1",
"cookie": "0.4.1",
"cookie-parser": "1.4.5",
"cross-env": "7.0.3",
"debug": "4.3.1",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-session": "1.17.1",
"firebase": "8.3.2",
"graphql": "15.5.0",
"graphql-tag": "2.11.0",
"graphql-tools": "7.0.4",
"isomorphic-unfetch": "3.1.0",
"lru-cache": "6.0.0",
"next": "10.1.3",
"passport": "0.4.1",
"passport-local": "1.0.0",
"query-string": "^7.0.0",
"react": "17.0.2",
"react-apollo": "3.1.5",
"react-dom": "17.0.2",
"react-render-html": "0.6.0",
"url": "0.11.0"
},
"devDependencies": {
"@testing-library/jest-dom": "5.11.10",
"@testing-library/react": "11.2.6",
"@types/async": "3.2.6",
"@types/body-parser": "1.19.0",
"@types/cookie": "0.4.0",
"@types/cookie-parser": "1.4.2",
"@types/debug": "4.1.5",
"@types/express": "4.17.11",
"@types/express-session": "1.17.3",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "26.0.22",
"@types/lru-cache": "5.1.0",
"@types/node": "14.14.37",
"@types/passport": "1.0.6",
"@types/passport-local": "1.0.33",
"@types/react": "17.0.3",
"@typescript-eslint/eslint-plugin": "4.21.0",
"@typescript-eslint/eslint-plugin-tslint": "4.21.0",
"@typescript-eslint/parser": "4.21.0",
"babel-loader": "8.2.2",
"babel-plugin-transform-define": "2.0.0",
"eslint": "7.23.0",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.23.1",
"jest": "26.6.3",
"mockdate": "3.0.5",
"nodemon": "2.0.7",
"postcss": "8.2.9",
"postcss-preset-env": "6.7.0",
"prettier": "2.2.1",
"react-test-renderer": "17.0.2",
"rimraf": "3.0.2",
"ts-jest": "26.5.4",
"ts-node": "9.1.1",
"tslint-config-prettier": "1.18.0",
"typescript": "4.2.3"
}
}