-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.14 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.14 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
{
"name": "Streamlo",
"version": "1.0.0",
"description": "Streamlo local artists streaming website",
"private": true,
"scripts": {
"start": "npm run build && node server.js",
"dev": "webpack-dev-server --mode development --config webpack.dev.js --open",
"build": "webpack --mode production --config webpack.prod.js",
"analyse": "webpack --mode production --config webpack.prod.js --profile --json > stats.json && webpack-bundle-analyzer stats.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/richard534/MusicSteamWebsite.git"
},
"author": "Richard Taylor",
"license": "ISC",
"bugs": {
"url": "https://github.com/richard534/MusicSteamWebsite/issues"
},
"homepage": "https://github.com/richard534/MusicSteamWebsite#readme",
"dependencies": {
"axios": "0.16.2",
"bootstrap": "3.3.6",
"immutability-helper": "2.1.2",
"jquery": "^3.3.1",
"jwt-decode": "^2.2.0",
"lodash": "4.9.0",
"moment": "^2.20.1",
"react": "15.6.2",
"react-dom": "15.6.2",
"react-hot-loader": "^4.0.0",
"react-player": "^1.1.2",
"react-router": "2.8.1",
"toastr": "2.1.0",
"validate.js": "0.9.0",
"validator": "^9.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^1.1.11",
"css-loader": "^0.23.1",
"dotenv": "^5.0.1",
"dotenv-webpack": "^1.5.5",
"eslint": "2.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "1.6.1",
"eslint-plugin-react": "5.0.1",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.0.6",
"style-loader": "0.13.1",
"svg-inline-loader": "^0.8.0",
"uglifyjs-webpack-plugin": "^1.2.3",
"url-loader": "^0.5.9",
"webpack": "^4.1.1",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.11",
"webpack-dev-server": "^3.1.1",
"webpack-merge": "^4.1.2"
}
}