-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.98 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
{
"name": "web-boilerplate",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "NODE_PATH=./ node server/index.js",
"start:watch": "NODE_PATH=./ nodemon server/index.js",
"start:tunnel": "ENABLE_TUNNEL=true npm run start",
"start:production": "NODE_ENV=production npm run start",
"start-test": "NODE_ENV=test npm run start",
"start-test:watch": "NODE_ENV=test npm run start:watch",
"test": "npm run test-lint && TRAVIS=true npm run test-client",
"test-lint": "eslint --cache --quiet ./client ./server ./shared",
"test-client": "NODE_ENV=test NODE_PATH=./ karma start karma.conf.js",
"build": "NODE_ENV=production gulp sass && NODE_ENV=production webpack",
"postinstall": "npm run build"
},
"dependencies": {
"autoprefixer": "^6.4.0",
"axios": "^0.14.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.25.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.13.0",
"babel-register": "^6.11.6",
"bcrypt": "^1.0.2",
"bluebird": "^3.5.0",
"body-parser": "^1.15.1",
"browser-sync": "^2.18.8",
"browser-sync-webpack-plugin": "^1.1.4",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"cssnano": "^3.7.3",
"express": "^4.14.0",
"express-jwt": "^5.1.0",
"gulp": "^3.9.1",
"gulp-if": "^2.0.1",
"gulp-livereload": "^3.8.1",
"gulp-postcss": "^6.1.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^1.6.0",
"i18next": "^3.4.1",
"jquery": "^3.1.0",
"jwt-simple": "^0.5.1",
"lodash": "^4.17.4",
"materialize-css": "^0.98.2",
"moment": "^2.18.1",
"mongoose": "^4.10.8",
"morgan": "^1.7.0",
"ngrok": "^2.2.2",
"nodemon": "^1.11.0",
"nunjucks": "^2.4.2",
"pm2": "^2.5.0",
"prhone-tools": "^1.4.0",
"react": "^15.6.1",
"react-addons-shallow-compare": "^15.6.0",
"react-dom": "^15.6.1",
"react-materialize": "^0.18.4",
"react-redux": "^4.4.6",
"react-router": "^3.0.5",
"redux": "^3.7.0",
"redux-auth-wrapper": "^1.1.0",
"redux-thunk": "^2.2.0",
"require-dir": "^0.3.0",
"string": "^3.3.1",
"uuid": "^3.1.0",
"validator": "^6.3.0",
"vulcanval": "^3.1.10",
"webpack": "^1.15.0",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-eslint": "^7.1.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.0",
"chai-http": "^3.0.0",
"enzyme": "^2.9.0",
"eslint": "^3.8.1",
"eslint-plugin-react": "^6.4.1",
"karma": "^1.1.2",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^1.2.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^3.0.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.11.0",
"rimraf": "^2.5.4",
"updtr": "^0.2.2"
}
}