-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.28 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
66
67
68
69
70
71
72
73
{
"name": "audio-player",
"version": "0.1.0",
"description": "Yet another audio player. Uses React as a view layer.",
"main": "app/index.js",
"repository": "https://github.com/iamvanja/react-audio-player.git",
"author": "iamvanja <[email protected]>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.4.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chalk": "^1.1.3",
"css-loader": "^0.28.0",
"dotenv": "^4.0.0",
"esdoc": "^0.5.2",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-react": "^6.10.3",
"file-loader": "^0.11.1",
"node-sass": "^4.5.2",
"postcss-loader": "^1.3.3",
"react-hot-loader": "^1.3.1",
"resolve-url-loader": "^2.0.2",
"sass-loader": "^6.0.3",
"shelljs": "^0.6.0",
"style-loader": "^0.16.1",
"url-loader": "^0.5.8",
"webpack": "^2.4.1",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "^2.4.2"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"dependencies": {
"id3-reader": "https://github.com/aadsm/JavaScript-ID3-Reader",
"normalize.css": "^6.0.0",
"react": "^15.5.4",
"react-addons-css-transition-group": "^15.5.2",
"react-dom": "^15.5.4"
},
"scripts": {
"start": "./node_modules/webpack-dashboard/bin/webpack-dashboard.js webpack-dev-server",
"build": "NODE_ENV=production webpack -p --config webpack.config.js",
"docs": "./node_modules/.bin/esdoc -c .esdoc.json && open ./doc/index.html",
"deploy": "npm run build && node config/deploy",
"postinstall": "cp ./node_modules/id3-reader/dist/id3-minimized.js ./build/id3.js"
},
"deploy": {
"src": "build/",
"args": [
"recursive",
"delete",
"progress",
"compress",
"human-readable"
],
"exclude": [
"*.map",
"fonts/config.json",
"Thumbs.db",
".DS_Store"
]
}
}