-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 3.43 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
98
99
100
101
102
103
104
105
106
{
"name": "docman",
"version": "0.0.0",
"private": true,
"scripts": {
"postinstall": "npm run build",
"build": "npm run webpack:prod",
"start": "NODE_ENV=production node bin/www",
"start:dev": "NODE_ENV=development nodemon -w server -w webpack.config.js bin/www",
"test": "NODE_ENV=testing istanbul cover _mocha -- --compilers js:babel-core/register --require ./test/helpers/fend-test-setup.js 'test/**/*@(.js|.jsx)'",
"test:bend": "NODE_ENV=testing istanbul cover _mocha test/server/**/*.js",
"test:fend": "NODE_ENV=testing istanbul cover _mocha -- --compilers js:babel-core/register --require ./test/helpers/fend-test-setup.js 'test/client/**/*@(.js|.jsx)'",
"test:fend:watch": "npm run test:fend -- --watch --watch-extensions jsx",
"posttest": "npm run coverage",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"webpack": "./node_modules/.bin/webpack --progress -w",
"webpack:dev": "./node_modules/.bin/webpack-dev-server --devtool eval --progress --colors --hot --inline --content-base build",
"webpack:prod": "export NODE_ENV=production && ./node_modules/.bin/webpack -p"
},
"dependencies": {
"axios": "^0.11.1",
"babel-polyfill": "^6.9.1",
"bcrypt-nodejs": "0.0.3",
"blueimp-md5": "^2.3.0",
"body-parser": "~1.13.2",
"classnames": "^2.2.5",
"debug": "~2.2.0",
"dotenv": "^2.0.0",
"express": "~4.13.1",
"immutable": "^3.8.1",
"jsonwebtoken": "^5.7.0",
"material-ui": "^0.15.0",
"mongoose": "^4.4.12",
"morgan": "~1.6.1",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-immutable": "^3.0.6",
"redux-thunk": "^2.1.0",
"socket.io": "^1.4.6",
"socket.io-client": "^1.4.6",
"validator": "^5.2.0"
},
"devDependencies": {
"axios-mock-adapter": "^1.4.0",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-plugin-rewire": "^1.0.0-rc-3",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"chai": "^3.5.0",
"chai-immutable": "^1.6.0",
"chai-spies": "^0.7.1",
"coveralls": "^2.11.9",
"enzyme": "^2.3.0",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-react": "^5.1.1",
"eslint-plugin-standard": "^1.3.2",
"istanbul": "^1.0.0-alpha.2",
"jsdom": "^9.0.0",
"mocha": "^2.4.5",
"react-addons-test-utils": "^15.1.0",
"react-hot-loader": "^3.0.0-beta.2",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.11",
"redux-logger": "^2.6.1",
"redux-mock-store": "^1.0.4",
"sinon": "^1.17.4",
"supertest": "^1.2.0",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.12.1"
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread",
"react-hot-loader/babel"
],
"env": {
"testing": {
"plugins": [
"rewire"
],
"sourceMaps": "inline"
}
}
},
"engines": {
"node": "6.2.1"
}
}