-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.71 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
{
"name": "linfeng",
"version": "0.0.1",
"description": "music player",
"main": "webpack.config.js",
"engines": {
"node": ">= 4.7.0"
},
"scripts": {
"build": "webpack --p --progress --color --config webpack.config.js",
"dev": "webpack-dev-server --hot --open -d --inline --config webpack.config.js",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://git.oschina.net/superMEN/musicPlayer.git"
},
"keywords": [
"musicPlayer",
"react",
"redux",
"webpack2"
],
"author": "linfeng",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"bootstrap": "^3.3.7",
"css-loader": "^0.26.1",
"eslint": "^3.17.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.10.0",
"node-sass": "^4.5.0",
"postcss-loader": "^1.3.0",
"precss": "^1.4.0",
"px2rem-loader": "^0.1.7",
"sass-loader": "^5.0.1",
"scss-loader": "^0.0.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "^2.3.0",
"webpack-hot-middleware": "^2.20.0"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
}
}