-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
94 lines (94 loc) · 2.22 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
{
"name": "MERN",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"start": "NODE_ENV=production node server/server.js",
"test": "gulp test"
},
"author": "TechDojo",
"license": "MIT",
"engines": {
"node": "5.1.0",
"npm": "3.3.12"
},
"devDependencies": {
"browser-sync": "^2.7.2",
"browserify": "^10.2.1",
"commitizen": "^2.7.3",
"cz-conventional-changelog": "^1.1.5",
"expect": "^1.14.0",
"expect-jsx": "^2.3.0",
"ghooks": "^1.0.3",
"gulp": "^3.8.11",
"gulp-jsx-coverage": "^0.3.8",
"gulp-live-server": "0.0.14",
"gulp-mocha": "^2.2.0",
"gulp-util": "^3.0.7",
"istanbul": "^0.4.2",
"jsdom": "^8.1.0",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"react-addons-test-utils": "^0.14.7",
"should": "^7.1.1",
"sinon": "^1.17.3",
"supertest": "^1.1.0",
"generator-yomern": "^0.0.5"
},
"dependencies": {
"babelify": "^7.2.0",
"reactify": "^1.1.1",
"async": "^1.5.0",
"babel": "^6.0.0",
"vinyl-buffer": "^1.0.0",
"babel-core": "^6.2.1",
"babel-loader": "^6.1.0",
"babel-preset-es2015": "^6.1.2",
"gulp-uglify": "^1.5.3",
"babel-preset-react": "^6.1.2",
"body-parser": "^1.12.4",
"connect-mongo": "^1.0.2",
"cookie-parser": "^1.4.0",
"cors": "^2.6.0",
"ejs": "^2.3.1",
"express": "^4.12.4",
"express-session": "^1.12.1",
"glob": "^6.0.1",
"guid": "0.0.12",
"history": "1.17.x",
"jquery": "^2.1.4",
"lodash": "^3.10.1",
"mongoose": "4.0.3",
"node-jsx": "^0.13.3",
"nodemailer": "^1.10.0",
"object.assign": "4.0.3",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"react": "^0.14.3",
"react-bootstrap": "^0.28.1",
"react-dom": "^0.14.3",
"react-router": "^2.0.0",
"react-router-bootstrap": "^0.20.1",
"react-slick": "^0.9.3",
"react-tools": "^0.13.3",
"reactcss": "^0.4.2",
"source-map": "^0.5.2",
"vinyl-source-stream": "^1.1.0"
},
"config":{
"ghooks":{
"pre-commit": "npm run test"
},
"commitizen":{
"path": "node_modules/cz-conventional-changelog"
}
},
"babel": {
"presets": [
"es2015",
"react"
],
"sourceMap": "both"
}
}