-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.17 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
{
"name": "ods-learncode",
"version": "0.1.0",
"private": true,
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"cors": "^2.8.3",
"express": "^4.15.3",
"history": "^4.6.2",
"jquery": "^3.2.1",
"jsonwebtoken": "^7.4.1",
"lodash": "^4.17.4",
"mongoose": "^4.11.0",
"path": "^0.12.7",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router-dom": "^4.1.1",
"react-truncate": "^2.1.4",
"semantic-ui-css": "^2.2.10",
"semantic-ui-react": "^0.70.0"
},
"devDependencies": {
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.0.2",
"react-scripts": "1.0.7"
},
"scripts": {
"start": "npm-run-all -p watch-css start-js express",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"start-js": "react-scripts start",
"build-css": "node-sass-chokidar src/client/styles/sass -o src/client/styles/",
"watch-css": "npm run build-css && node-sass-chokidar src/client/styles/sass -o src/client/styles/ --watch --recursive",
"express": "node ./src/server/server.js"
}
}