forked from anupvarghese/workflows-kubernetes-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
145 lines (145 loc) · 3.98 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"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": "0.0.0.0",
"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 --single-run",
"test-dev": "NODE_ENV=test karma start",
"webpack": "webpack --colors --progress --config ./webpack/config"
},
"dependencies": {
"babel-plugin-rewire": "^0.1.21",
"classnames": "^2.1.3",
"immutable": "^3.7.4",
"normalize.css": "^3.0.3",
"react": "^0.14.2",
"react-addons-update": "^0.14.2",
"react-dom": "^0.14.2",
"react-redux": "^4.0.0",
"react-router": "^1.0.0-beta3",
"redux": "^3.0.4",
"redux-thunk": "^0.1.0",
"todomvc-app-css": "^2.0.1",
"todomvc-common": "^1.0.2"
},
"devDependencies": {
"autoprefixer-core": "^5.2.1",
"babel-core": "^6.0.0",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-react": "^6.0.0",
"babel-preset-stage-0": "^6.0.0",
"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.9",
"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.12.0",
"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,
"beforeEach": 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
}
}
}