-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "survey",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "node app.js",
"watch": "webpack -w",
"build-js": "webpack --config webpack.dev.js",
"build-production": "webpack --config webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build-css": "node-sass client/src/ -o client/src/ --output-style compressed",
"watch-css": "npm run build-css && webpack -w",
"build": "npm run build-css && npm run build-js",
"build-prod": "npm run build-css && npm run build-production",
"build-dev": "npm run build-css && npm run build-js -- --devtool source-map",
"dev-start": "npm run build-dev; DEBUG=express:* node app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"flux": "^3.1.3",
"nedb": "^1.8.0",
"project-version": "^1.2.0",
"react": "^16.13.1",
"react-confirm-alert": "^2.6.1",
"react-dom": "^16.13.1",
"react-modal": "^3.11.2",
"react-router-dom": "^5.2.0",
"superagent": "^5.2.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/polyfill": "^7.8.7",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"file-loader": "^6.0.0",
"node-sass": "^4.14.1",
"serialize-javascript": "^3.0.0",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
}
}