-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·34 lines (34 loc) · 990 Bytes
/
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
{
"name": "MyGrant",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"bcrypt": "^1.0.3",
"express": "^4.16.2",
"mongoose": "^5.0.8",
"react": "^16.2.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.2.0",
"react-scripts": "1.1.1",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"jsonwebtoken": "^8.2.0",
"body-parser": "^1.18.2"
},
"proxy": "http://localhost:8080",
"scripts": {
"sass": "sass --watch src/components:src/styles/css src/styles/scss:src/styles/css",
"client": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"server": "nodemon lib/server.js --ignore src/",
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\""
},
"devDependencies": {
"concurrently": "^3.5.1",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.7"
}
}