-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "spotify-clone",
"version": "0.0.1",
"description": "Spotify clone",
"main": "index.js",
"author": "Fred Hawk, aaayumi",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.2.2",
"css-loader": "^0.27.3",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-prettier": "^1.7.0",
"eslint-loader": "^1.7.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"gh-pages": "^0.12.0",
"html-webpack-plugin": "^2.28.0",
"image-webpack-loader": "^3.3.0",
"node-sass": "^4.5.1",
"postcss-loader": "^1.3.3",
"prettier": "^1.2.2",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.0",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"scripts": {
"dev": "webpack -d --watch",
"prod": "yarn superclean && NODE_ENV=production webpack -p",
"start": "webpack-dev-server -d",
"deploy": "gh-pages -d dist",
"superclean": "rimraf ./dist/*"
},
"browserslist": [
"> 5%",
"last 2 versions",
"ie 11"
]
}