forked from kriasoft/react-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.83 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
{
"private": true,
"engines": {
"node": ">= 0.10",
"npm": ">= 2.1"
},
"dependencies": {
"babel": "5.8.3",
"classnames": "2.1.3",
"eventemitter3": "1.1.1",
"express": "4.13.1",
"fastclick": "1.0.6",
"flux": "2.0.3",
"front-matter": "1.0.0",
"jade": "1.11.0",
"lodash": "3.10.0",
"normalize.css": "3.0.3",
"react": "^0.14.0-beta1",
"react-dom": "^0.14.0-beta1",
"react-routing": "0.0.3",
"source-map-support": "0.3.2",
"superagent": "1.2.0"
},
"devDependencies": {
"autoprefixer-core": "^5.2.1",
"babel-core": "^5.8.3",
"babel-eslint": "^3.1.26",
"babel-loader": "^5.3.2",
"browser-sync": "^2.8.0",
"css-loader": "^0.15.5",
"csscomb": "^3.1.8",
"cssnext": "^1.8.2",
"del": "^1.2.0",
"eslint": "^0.24.1",
"eslint-loader": "^0.14.2",
"eslint-plugin-react": "^3.0.0",
"git-push": "^0.1.1",
"gulp": "^3.9.0",
"gulp-changed": "^1.2.1",
"gulp-if": "^1.2.5",
"gulp-load-plugins": "^1.0.0-rc",
"gulp-rename": "^1.2.2",
"gulp-size": "^1.2.3",
"gulp-util": "^3.0.6",
"jest-cli": "^0.4.17",
"minimist": "^1.1.2",
"mkdirp": "^0.5.1",
"postcss": "^4.1.16",
"postcss-loader": "^0.5.1",
"postcss-nested": "^0.3.2",
"psi": "^1.0.6",
"run-sequence": "^1.1.2",
"style-loader": "^0.12.3",
"url-loader": "^0.5.6",
"webpack": "^1.10.5"
},
"jest": {
"rootDir": "./src",
"scriptPreprocessor": "../preprocessor.js",
"unmockedModulePathPatterns": [
"react"
]
},
"scripts": {
"start": "node server.js",
"lint": "eslint src gulpfile.babel.js webpack.config.js && csscomb src/components --lint",
"comb": "csscomb src/components --verbose",
"test": "eslint src && jest",
"build": "gulp build",
"serve": "gulp serve",
"sync": "gulp sync"
}
}