-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.96 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
{
"name": "calendar_component",
"version": "1.0.0",
"description": "Plain javascript Calendar component",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"validate-webpack": "webpack-validator webpack.config.js",
"clean-public": "rimraf public",
"clean-and-copy": "npm run clean-public",
"build": "npm run clean-and-copy && webpack -p"
},
"author": "Nirav Kapo",
"license": "ISC",
"dependencies": {
"babel-polyfill": "~6.23.0",
"body-parser": "~1.15.2",
"express": "~4.14.0",
"express-session": "~1.15.0",
"jade": "~1.11.0",
"request": "~2.79.0"
},
"devDependencies": {
"axios": "^0.15.3",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^21.2.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2017": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-preset-stage-3": "^6.22.0",
"babel-runtime": "^6.23.0",
"chunk-manifest-webpack-plugin": "^1.0.0",
"classnames": "^2.2.5",
"cpy": "^5.0.0",
"cpy-cli": "^1.0.1",
"css-loader": "^0.26.1",
"eslint": "^3.13.1",
"eslint-loader": "^1.6.1",
"extract-text-webpack-plugin": "^2.0.0-beta.5",
"file-loader": "~0.9.0",
"lodash": "^4.17.4",
"node-sass": "^4.3.0",
"node-uuid": "^1.4.7",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.4",
"react-test-renderer": "^15.5.4",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"rimraf": "^2.5.4",
"rotating-file-stream": "^1.1.7",
"sass-loader": "^4.1.1",
"sinon": "^4.1.2",
"style-loader": "^0.13.1",
"webpack": "~2.2.0",
"webpack-chunk-hash": "^0.3.0",
"webpack-manifest-plugin": "~1.1.0"
}
}