forked from celerityweb/react-flux-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.55 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.55 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
{
"name": "react-flux-boilerplate",
"version": "0.0.1",
"license": "MIT",
"dependencies": {
"react": "^0.12.2",
"react-router": "^0.12.4",
"reflux": "^0.2.3",
"superagent": "^0.21.0"
},
"devDependencies": {
"assert": "^1.1.1",
"babel-core": "^4.3.0",
"babel-loader": "^4.0.0",
"browser-sync": "^1.8.2",
"del": "^1.1.1",
"gulp": "^3.8.10",
"gulp-autoprefixer": "^2.0.0",
"gulp-coffeelint": "^0.4.0",
"gulp-concat": "^2.4.3",
"gulp-cssmin": "^0.1.6",
"gulp-filter": "^2.0.0",
"gulp-if": "^1.2.5",
"gulp-imagemin": "^2.1.0",
"gulp-jscs": "^1.4.0",
"gulp-jshint": "^1.9.0",
"gulp-less": "^2.0.1",
"gulp-load-plugins": "^0.8.0",
"gulp-plato": "^1.0.2",
"gulp-rev": "^2.0.1",
"gulp-sass": "^1.2.4",
"gulp-size": "^1.1.0",
"gulp-sourcemaps": "^1.3.0",
"gulp-stylus": "^1.3.4",
"gulp-webpack": "^1.1.2",
"jest-cli": "^0.2.1",
"jshint-stylish": "^1.0.0",
"jsx-loader": "0.12.0",
"karma": "^0.12.16",
"karma-chrome-launcher": "^0.1.4",
"karma-cli": "0.0.4",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.1.4",
"karma-webpack": "^1.2.1",
"minimist": "^1.1.0",
"mocha": "^1.20.1",
"react-tools": "^0.12.2",
"require-dir": "^0.1.0",
"run-sequence": "^1.0.2",
"webpack": "^1.3.0-beta5"
},
"jest": {
"rootDir": "app",
"scriptPreprocessor": "../config/preprocessor.js",
"unmockedModulePathPatterns": [
"react"
]
},
"scripts": {
"test": "jest",
"start": "node server.js"
}
}