-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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
{
"name": "rx-devtools",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack.config.app.js",
"build": "rimraf build && webpack --config webpack.inject.js && webpack -p",
"dev": "rimraf build/js && webpack -w",
"watch": "webpack --config webpack.inject.js -w",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write --tab-width 4 --single-quote --trailing-comma es5",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jerry-Hong/rx-devtools.git"
},
"author": "Jerry-Hong",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jerry-Hong/rx-devtools/issues"
},
"homepage": "https://github.com/Jerry-Hong/rx-devtools#readme",
"dependencies": {
"classnames": "^2.2.5",
"normalize.css": "^6.0.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-router": "^4.1.1",
"redux": "^3.6.0",
"redux-duck": "^1.0.2",
"rxjs": "^5.1.0"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2015-native-modules": "^6.9.4",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.3",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"html-webpack-plugin": "^2.28.0",
"husky": "^0.13.3",
"lint-staged": "^3.5.0",
"lodash": "^4.17.4",
"postcss-loader": "^1.3.3",
"postcss-nested": "^1.0.1",
"prettier": "^1.3.1",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.4",
"style-loader": "^0.16.1",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}