forked from mattpetrie/React-Node-Project-Seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.13 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
{
"name": "react-node-project-seed",
"version": "0.1.0",
"description": "React + Node, with Flux, Express, and MongoDB",
"engines": {
"iojs": "1.2.x",
"npm": "2.5.x"
},
"readme": "README.md",
"repository": {
"type": "git",
"url": "http://github.com/mattpetrie/react-node-project-seed.git"
},
"scripts": {
"postinstall": "gulp build:production",
"start": "node server/main.js",
"test": "./node_modules/karma/bin/karma start karma.conf.js"
},
"keywords": [
"Express",
"React",
"Node",
"Karma",
"Mocha"
],
"author": "Matt Petrie",
"license": "MIT",
"jshintConfig": {
"assumestrict": "true"
},
"devDependencies": {
"chai": "^1.10.0",
"gulp-nodemon": "^1.0.5",
"gulp-shell": "0.3.0",
"karma": "^0.12.31",
"karma-chrome-launcher": "^0.1.7",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.1.10",
"karma-mocha-reporter": "^0.3.1",
"karma-notify-reporter": "^0.1.1",
"karma-phantomjs-launcher": "^0.1.4",
"karma-sinon-chai": "^0.3.0",
"karma-webpack": "^1.5.0",
"mocha": "^2.1.0",
"mocha-mongoose": "1.0.3",
"mongodb": "1.4.30",
"react-hot-loader": "^1.1.3",
"react-tools": "^0.12.2",
"rewire": "^2.1.4",
"rewire-webpack": "^1.0.0",
"sinon": "^1.12.2",
"sinon-chai": "^2.6.0",
"supertest": "0.15.0",
"webpack-dev-server": "^1.7.0"
},
"dependencies": {
"6to5": "^3.3.4",
"6to5-core": "^3.3.4",
"6to5-loader": "^3.0.0",
"autoprefixer-loader": "^1.1.0",
"body-parser": "^1.10.1",
"css-loader": "^0.9.1",
"del": "^1.1.1",
"es6-promise": "^2.0.1",
"express": "^4.10.7",
"flux": "^2.0.1",
"gulp": "^3.8.10",
"gulp-preprocess": "^1.2.0",
"gulp-util": "^3.0.2",
"imports-loader": "^0.6.3",
"jquery": "^2.1.3",
"jsx-loader": "^0.12.2",
"less-loader": "2.0.0",
"lodash": "^3.0.1",
"mongodb-uri": "0.9.7",
"mongoose": "^3.8.21",
"morgan": "^1.5.1",
"object-assign": "^2.0.0",
"react": "^0.12.2",
"react-router": "0.11.6",
"require-dir": "^0.1.0",
"style-loader": "^0.8.3",
"webpack": "^1.5.3"
}
}