-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.8 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
93
94
95
96
97
{
"name": "swapi_test",
"version": "1.0.0",
"description": "\"Test Web App\"",
"main": "server.js",
"scripts": {
"clean": "rimraf public/bundle.* public/style.*",
"build": "cross-env NODE_ENV=production webpack --config ./webpack.prod.config.js --progress --colors",
"postinstall": "npm run clean && npm run build",
"start": "node server.js",
"dash": "webpack-dashboard -- node server.js",
"dev": "node server.js",
"lint": "eslint src/. -c .eslintrc.json --ext .jsx",
"test": "cross-env mocha ./test/test-setup.js './test/**/*.spec.js' --compilers js:babel-core/register",
"test:watch": "npm test -- --watch"
},
"engines": {
"node": "6.11.3"
},
"repository": {
"type": "git",
"url": "\"git+https://\""
},
"keywords": [
"node",
"heroku",
"express"
],
"author": "Rajeev Mishra ",
"license": "ISC",
"dependencies": {
"autoprefixer-loader": "^3.2.0",
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-plugin-react-transform": "^2.0.2",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"body-parser": "^1.15.1",
"chai": "^3.5.0",
"classnames": "^2.2.5",
"compression": "^1.6.2",
"cross-env": "^1.0.8",
"css-loader": "^0.23.1",
"express": "^4.15.3",
"express-limiter": "^1.6.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^9.8.3",
"json-loader": "^0.5.4",
"jsonwebtoken": "^7.4.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.13.1",
"node-sass": "^3.13.1",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-router": "^2.6.1",
"react-router-redux": "^4.0.8",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.6",
"redis": "^2.8.0",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"rimraf": "^2.5.2",
"sass-loader": "^3.2.3",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dashboard": "^0.1.8",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-jest": "^19.0.0",
"enzyme": "^2.8.2",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"jest": "^19.0.2",
"jest-cli": "^19.0.2",
"jquery": "^3.2.1",
"react-test-renderer": "^15.5.4",
"webpack-dashboard": "^0.1.8"
}
}