-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.58 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.58 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
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
{
"name": "six-poll",
"version": "1.2.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "babel-node lib/build.js",
"start": "babel-node app.js",
"lint": "eslint lib test app.js",
"pretest": "npm run lint",
"test": "npm run coverage",
"mocha": "mocha test/**/*.test.js",
"precoverage": "npm run lint",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- test/**/*.test.js",
"chelf": "chelf -dir=. -recurse=true -lineendings=lf -encodings=utf8 -fixup=true -excludeFiles=node_modules"
},
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^0.5.4",
"babel": "^5.8.23",
"babel-core": "^5.8.23",
"babel-loader": "^5.3.2",
"bluebird": "^2.10.1",
"body-parser": "^1.13.3",
"compression": "^1.6.0",
"cookie-parser": "^1.4.0",
"css-loader": "^0.19.0",
"css-modules-require-hook": "^1.0.8",
"cssnext": "^1.8.4",
"cssnext-loader": "^1.0.1",
"errorhandler": "^1.4.2",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"font-awesome": "^4.4.0",
"history": "^1.9.1",
"http-errors": "^1.3.1",
"key-mirror": "^1.0.0",
"lodash": "^3.10.1",
"mongoose": "^4.1.3",
"morgan": "^1.6.1",
"normalize.css": "^3.0.3",
"postcss-custom-properties": "^5.0.0",
"postcss-loader": "^0.6.0",
"postcss-modules-extract-imports": "0.0.6",
"postcss-modules-local-by-default": "0.0.12",
"postcss-modules-scope": "0.0.8",
"purecss": "^0.6.0",
"react": "^0.14.0",
"react-css-modules": "^3.5.2",
"react-dom": "^0.14.0",
"react-redux": "^2.1.0",
"react-router": "^1.0.0-rc1",
"react-tools": "^0.10.0",
"redux": "^2.0.0",
"redux-logger": "^2.0.0",
"redux-thunk": "^0.1.0",
"serve-static": "^1.10.0",
"style-loader": "^0.12.4",
"stylus-loader": "^1.3.1",
"url-loader": "^0.5.6",
"webpack": "^1.12.1"
},
"devDependencies": {
"babel-eslint": "^4.1.1",
"babel-plugin-react-transform": "^1.1.1",
"chelf": "^0.1.0",
"eslint": "^1.4.3",
"eslint-plugin-react": "^3.4.0",
"istanbul": "^0.3.19",
"json-loader": "^0.5.3",
"memory-fs": "^0.2.0",
"mocha": "^2.2.5",
"mocha.parallel": "^0.7.1",
"react-hot-loader": "^1.3.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.1.1",
"redux-devtools": "^2.1.0",
"should": "^7.0.4",
"supertest": "^1.1.0",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.2.0"
},
"engines": {
"node": "^4.1.0"
}
}