-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "spotify-user-top",
"version": "1.0.0",
"description": "Shows your top tracks and artists.",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --inline --hot --watch-poll --content-base build/",
"build-dev": "webpack -d",
"build-production": "webpack -p",
"clean": "rm build/bundle.js build/bundle.js.map",
"test": "echo \"Not yet :-)\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/villor/spotify-user-top.git"
},
"author": "Viktor Gustavsson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/villor/spotify-user-top/issues"
},
"homepage": "https://github.com/villor/spotify-user-top#readme",
"dependencies": {
"normalize.css": "^5.0.0",
"query-string": "^4.3.0",
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"css-loader": "^0.26.1",
"eslint": "^3.13.1",
"eslint-plugin-react": "^6.9.0",
"node-sass": "^4.3.0",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
}
}