-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.28 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.28 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "questionnaire",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"rnm": "rm -rf node_modules && npm install --no-optional",
"update": "rm -rf node_modules && npm update --save --no-optional && npm update --save-dev --no-optional",
"wpv": "webpack --version",
"build": "rimraf ./_dist && cross-env NODE_ENV=production webpack --hide-modules -p",
"dev": "rimraf ./_dist && webpack --hide-modules",
"buildServer": "babel server -d distServer --copy-files",
"start": "rimraf ./_dist && cross-env NODE_ENV=development concurrently --kill-others \"npm run startDev\" \"npm run startServer\"",
"startBuild": "rimraf ./_dist && cross-env NODE_ENV=development concurrently --kill-others \"cross-env NODE_ENV=production webpack --hide-modules -p -w\" \"npm run startServer\"",
"startDev": "webpack --hide-modules -w",
"startServer": "nodemon -e js,jsx,json --exec \"babel-node\" @Server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/jquery": "^2.0.40",
"babel-runtime": "^6.23.0",
"es6-promise": "^4.0.5",
"express": "^4.15.0",
"jQuery": "^1.7.4",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router": "^3.0.2"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.23.0",
"concurrently": "^3.3.0",
"cross-env": "^3.1.4",
"css-loader": "^0.26.2",
"eslint": "^3.16.1",
"eslint-loader": "^1.6.3",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-react": "^6.10.0",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.10.1",
"node-sass": "^4.5.0",
"nodemon": "^1.11.0",
"postcss-loader": "^1.3.3",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.2",
"style-loader": "^0.13.2",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-livereload-plugin": "^0.10.0"
}
}