-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.44 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
74
75
76
{
"name": "audioplayer",
"version": "1.0.0",
"description": "html5 audioplayer",
"main": "index.js",
"scripts": {
"build": "npm run clean && NODE_ENV=production webpack -p --config config/webpack.config.js",
"build:development": "npm run clean && NODE_ENV=development webpack --config config/webpack.config.js",
"clean": "rimraf dist",
"server": "NODE_ENV=development webpack-dev-server --inline --hot --config config/webpack.config.js",
"start": "NODE_ENV=development webpack-dev-server --inline --hot --config config/webpack.config.js",
"server:production": "npm run build && http-server-spa dist",
"deploy": "npm run build && surge --domain pl4y.surge.sh -p dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"frontend",
"audio",
"audioplayer",
"music"
],
"author": "Guillermo Puente <guillermo.ps09@gmail.com>",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^7.2.3",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-react-jsx-img-import": "^0.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"colors": "^1.1.2",
"css-loader": "^0.28.7",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.30.1",
"http-server-spa": "^1.2.0",
"image-webpack-loader": "^3.4.2",
"postcss-loader": "^2.0.9",
"rimraf": "^2.6.2",
"style-loader": "^0.19.0",
"surge": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.9.1",
"webpack-dev-server": "^2.9.5",
"webpack-merge": "^4.1.1"
},
"dependencies": {
"bootstrap": "^4.0.0-beta.3",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"mobile-detect": "^1.4.1",
"moment": "^2.20.1",
"moment-duration-format": "^2.1.0",
"popper.js": "^1.12.9",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-slick": "^0.16.0",
"redux": "^3.7.2",
"redux-subscriptions": "^0.2.0",
"redux-thunk": "^2.2.0",
"screen-orientation": "^1.0.3",
"slick-carousel": "^1.8.1"
}
}