forked from kriasoft/react-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.75 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
{
"private": true,
"engines": {
"node": ">= 0.10",
"npm": ">= 2.1"
},
"dependencies": {
"babel": "5.5.6",
"classnames": "2.1.2",
"eventemitter3": "1.1.0",
"express": "4.12.4",
"fastclick": "1.0.6",
"flux": "2.0.3",
"front-matter": "1.0.0",
"jade": "1.10.0",
"lodash": "3.9.3",
"normalize.css": "3.0.3",
"react": "0.13.3",
"source-map-support": "0.3.1",
"superagent": "1.2.0"
},
"devDependencies": {
"autoprefixer-core": "^5.2.0",
"babel-core": "^5.5.6",
"babel-eslint": "^3.1.15",
"babel-loader": "^5.1.4",
"browser-sync": "^2.7.7",
"css-loader": "^0.14.5",
"csscomb": "^3.1.7",
"del": "^1.2.0",
"eslint": "^0.22.1",
"eslint-loader": "^0.12.0",
"eslint-plugin-react": "^2.5.0",
"git-push": "^0.1.1",
"gulp": "^3.9.0",
"gulp-changed": "^1.2.1",
"gulp-if": "^1.2.5",
"gulp-load-plugins": "^0.10.0",
"gulp-rename": "^1.2.2",
"gulp-size": "^1.2.1",
"gulp-util": "^3.0.5",
"jest-cli": "^0.4.10",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"minimist": "^1.1.1",
"mkdirp": "^0.5.1",
"postcss": "^4.1.11",
"postcss-loader": "^0.4.4",
"psi": "^1.0.6",
"run-sequence": "^1.1.0",
"style-loader": "^0.12.3",
"url-loader": "^0.5.6",
"webpack": "^1.9.10"
},
"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"
}
}