-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.31 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
{
"name": "hackernew-node",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server",
"start-dev": "NODE_ENV=development npm run build-client-watch & NODE_ENV=development npm run start-server",
"start-server": "nodemon server",
"build-client-watch": "webpack -w",
"build-client": "webpack -p",
"build": "webpack -p"
},
"dependencies": {
"apollo-boost": "^0.4.4",
"apollo-link-context": "^1.0.19",
"apollo-link-ws": "^1.0.19",
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"graphql": "^14.5.8",
"graphql-yoga": "^1.18.3",
"jsonwebtoken": "^8.5.1",
"prisma-client-lib": "^1.34.8",
"react": "^16.10.2",
"react-apollo": "^3.1.2",
"react-dom": "^16.10.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"subscriptions-transport-ws": "^0.9.16"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"style-loader": "^1.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
}
}