forked from ONSdigital/census-react-survey-runner-prototype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.08 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
51
52
53
54
55
56
{
"name": "census-react-survey-runner",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-dev": "cross-env NODE_ENV=development SESSION_SECRET='blue lark' USE_SERVER_RENDER=true EQ_SERVER_SIDE_STORAGE_USER_ID_SALT=condiment1 EQ_SERVER_SIDE_STORAGE_USER_IK_SALT=condiment2 nodemon --exec babel-node src/server --ignore client",
"build": "rm -r build/* && babel -d ./build src -s --copy-files",
"build:client": "webpack --config ./webpack.config.prod.babel.js/",
"build:prod": "npm run build && npm run build:client",
"start": "cross-env NODE_ENV=production SESSION_SECRET='bright green bricks' USE_SERVER_RENDER=true EQ_SERVER_SIDE_STORAGE_USER_ID_SALT=salt1 EQ_SERVER_SIDE_STORAGE_USER_IK_SALT=salt2 node ./build/server/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-regenerator-runtime": "^6.5.0",
"body-parser": "^1.18.3",
"cookie-session": "^2.0.0-beta.3",
"express": "^4.16.1",
"express-session": "^1.15.6",
"express-yields": "^1.1.1",
"formik": "^1.3.1",
"fs-extra": "^4.0.2",
"history": "^4.7.2",
"isomorphic-fetch": "^2.2.1",
"localforage": "^1.7.3",
"lodash": "^4.17.4",
"node-jose": "^1.1.0",
"optimist": "^0.6.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router-config": "^4.4.0-beta.6",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-saga": "^0.15.6",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"webpack": "^3.6.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.19.1"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"nodemon": "^1.18.6"
}
}