-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
130 lines (130 loc) · 3.46 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "react-seed",
"version": "0.0.16",
"description": "Seed project for React apps using ES6 & webpack.",
"repository": "https://github.com/badsyntax/react-seed",
"license": "MIT",
"config": {
"buildDir": "./build",
"buildDirTests": "./build_tests",
"devHost": "localhost",
"devPort": 8000
},
"scripts": {
"build": "NODE_ENV=production npm run webpack",
"clean": "rimraf $npm_package_config_buildDir && mkdir $npm_package_config_buildDir",
"env": "env",
"lint": "eslint --ext .js --ext .jsx ./app ./webpack && echo No linting errors.",
"prebuild": "npm run clean",
"prestart": "npm install",
"pretest": "npm install && npm run lint",
"pretest-travis": "npm install && npm run lint",
"start": "NODE_ENV=development node dev-server ./webpack/config",
"test": "NODE_ENV=test karma start",
"test-travis": "NODE_ENV=test karma start --single-run",
"webpack": "webpack --colors --progress --config ./webpack/config"
},
"dependencies": {
"classnames": "^2.1.3",
"flux": "^2.0.3",
"normalize.css": "^3.0.3",
"react": "^0.13.3"
},
"devDependencies": {
"autoprefixer-core": "^5.2.1",
"babel-core": "^5.8.3",
"babel-eslint": "^3.1.23",
"babel-loader": "^5.3.1",
"babel-plugin-rewire": "^0.1.8",
"babel-runtime": "^5.6.15",
"chai": "^3.0.0",
"css-loader": "^0.15.2",
"eslint": "^0.24.0",
"eslint-plugin-react": "^2.6.4",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"glob": "^5.0.13",
"html-loader": "^0.3.0",
"json-loader": "^0.5.2",
"karma": "^0.13.2",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "0.1.0",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.2",
"karma-phantomjs-launcher": "^0.2.0",
"karma-sinon": "^1.0.4",
"karma-source-map-support": "^1.0.0",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.5.1",
"lodash": "^3.10.0",
"mocha": "^2.2.5",
"mocha-loader": "^0.7.1",
"node-libs-browser": "^0.5.2",
"node-sass": "^3.2.0",
"opn": "^3.0.2",
"phantomjs": "^1.9.17",
"postcss-loader": "^0.5.1",
"react-hot-loader": "^1.2.8",
"rimraf": "^2.4.1",
"sass-loader": "^1.0.2",
"sinon": "^1.15.4",
"source-map-support": "^0.3.2",
"style-loader": "^0.12.3",
"template-html-loader": "0.0.3",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
},
"engines": {
"node": ">=0.12.0"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"es6": true
},
"ecmaFeatures": {
"modules": true,
"jsx": true
},
"globals": {
"describe": true,
"it": true,
"sinon": true
},
"parser": "babel-eslint",
"plugins": [
"react"
],
"rules": {
"strict": [
2,
"global"
],
"indent": [
2,
2
],
"quotes": [
2,
"single"
],
"no-alert": 0,
"no-underscore-dangle": 0,
"react/display-name": 0,
"react/jsx-quotes": 1,
"react/jsx-no-undef": 1,
"react/jsx-sort-props": 1,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1,
"react/no-did-mount-set-state": 1,
"react/no-did-update-set-state": 1,
"react/no-multi-comp": 1,
"react/no-unknown-property": 1,
"react/prop-types": 0,
"react/react-in-jsx-scope": 1,
"react/self-closing-comp": 1,
"react/wrap-multilines": 1
}
}
}