-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.64 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.64 KB
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
{
"name": "player",
"version": "1.0.0",
"description": "a simple music player",
"scripts": {
"dev": "webpack-dev-server --env.react --config config/webpack.config.js",
"stage": "npm run build && serve dist",
"build": "rimraf dist && webpack --env.production --config config/webpack.config.js",
"analyze": "webpack --env.production --env.analyzer --config config/webpack.config.js",
"lint": "eslint .",
"fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,scss}\"",
"precommit": "lint-staged"
},
"browserslist": [
"chrome > 51",
"last 3 firefox versions",
"last 3 safari versions",
"last 2 ios versions"
],
"author": "dgeibi",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.40",
"antd": "^3.2.3",
"anujs": "^1.3.0",
"fasy": "^5.0.4",
"id3-parser": "^2.0.0",
"idb": "^2.1.0",
"is-promise": "^2.1.0",
"promise-file-reader": "^1.0.2",
"react-document-title": "^2.0.3",
"react-feather": "^1.0.8",
"react-hot-loader": "^4.0.0",
"uemitter": "0.0.4"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.40",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"@babel/preset-react": "^7.0.0-beta.40",
"@easyops/git-exec-and-restage": "^1.0.4",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.0-beta.2",
"babel-plugin-import": "^1.6.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"clean-webpack-plugin": "^0.1.18",
"copy-webpack-plugin": "^4.5.0",
"css-loader": "^0.28.10",
"eslint": "^4.18.2",
"eslint-config-dgeibi": "^4.1.0",
"eslint-import-resolver-webpack": "^0.8.4",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.0.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^2.1.1",
"prettier": "^1.11.0",
"prop-types": "^15.6.1",
"react": "16.3.0-alpha.1",
"react-dom": "16.3.0-alpha.1",
"rimraf": "^2.6.2",
"serve": "^6.5.2",
"style-loader": "^0.20.2",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^4.1.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.0",
"webpack-merge": "^4.1.2",
"workbox-webpack-plugin": "^2.1.3"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 90
},
"lint-staged": {
"*.{css,js}": [
"git-exec-and-restage prettier --write --"
]
}
}