-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.87 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "sap-survey",
"version": "1.0.0",
"description": "React-Redux applications",
"scripts": {
"mock": "MOCK_API=true npm run dev",
"dev": "npm-run-all --parallel test:watch open:src lint:watch",
"open:src": "NODE_ENV=development babel-node server/index.js",
"lint": "node_modules/.bin/esw webpack.config.* src tools",
"lint:watch": "npm run lint -- --watch",
"test": "mocha --reporter nyan tools/testSetup.js \"tests\"",
"test:watch": "npm run test -- --watch",
"clean-dist": "npm run remove-dist && mkdir dist",
"remove-dist": "node_modules/.bin/rimraf ./dist",
"prebuild": "npm-run-all clean-dist test lint",
"build": "babel-node tools/build.js",
"postinstall": "npm run build",
"start": "babel-node server/index.js",
"prod": "NODE_ENV=production npm-run-all build start"
},
"author": "Sophilabs",
"license": "ISC",
"dependencies": {
"axios": "^0.12.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-polyfill": "6.8.0",
"bootstrap": "^3.3.7",
"classnames": "^2.2.5",
"dotenv": "^2.0.0",
"express-webpack-assets": "0.0.2",
"json-loader": "^0.5.4",
"material-ui": "^0.15.4",
"md5": "^2.1.0",
"moment": "^2.13.0",
"pug": "^2.0.0-beta3",
"react": "15.0.2",
"react-dom": "15.0.2",
"react-loader-advanced": "^1.4.0",
"react-redux": "4.4.5",
"react-router": "2.4.0",
"react-router-redux": "4.0.4",
"react-tap-event-plugin": "^1.0.0",
"redux": "3.5.2",
"redux-logger": "^2.6.1",
"redux-thunk": "2.0.1",
"sass-loader": "^4.0.2"
},
"devDependencies": {
"assets-webpack-plugin": "^3.4.0",
"babel-cli": "6.8.0",
"babel-core": "6.8.0",
"babel-loader": "6.2.4",
"babel-plugin-react-display-name": "2.0.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-react-hmre": "1.1.1",
"babel-register": "6.8.0",
"cheerio": "^0.20.0",
"colors": "1.1.2",
"compression": "^1.6.1",
"copy-webpack-plugin": "^3.0.1",
"cross-env": "1.0.7",
"css-loader": "0.23.1",
"enzyme": "2.2.0",
"eslint": "2.9.0",
"eslint-plugin-import": "1.6.1",
"eslint-plugin-react": "5.0.1",
"eslint-watch": "2.1.11",
"eventsource-polyfill": "0.9.6",
"expect": "^1.20.2",
"express": "4.13.4",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.5",
"jsdom": "8.5.0",
"mocha": "2.4.5",
"nock": "8.0.0",
"node-sass": "^3.10.1",
"npm-run-all": "1.8.0",
"open": "0.0.5",
"react-addons-test-utils": "15.0.2",
"redux-immutable-state-invariant": "1.2.3",
"redux-mock-store": "^1.1.2",
"rimraf": "2.5.2",
"style-loader": "^0.13.1",
"url-loader": "0.5.7",
"webpack": "1.13.0",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.10.0",
"webpack-md5-hash": "0.0.5"
}
}