-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.04 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
{
"name": "music-by-face",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"repository": "https://github.com/jschlachtenhaufen/music-by-face",
"author": "John Schlachtenhaufen <jschlach25@gmail.com>",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
"test": "eslint src/**.js",
"build": "yarn clean; NODE_ENV=production webpack --colors",
"clean": "rimraf dist",
"deploy": "yarn build; surge -p dist -d musicbyface.surge.sh; yarn clean"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"css-loader": "^3.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.3.1",
"style-loader": "^1.0.0",
"surge": "^0.20.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"@material-ui/core": "^4.3.3",
"axios": "^0.18.0",
"browser-image-compression": "^1.0.6",
"form-data": "^2.3.3",
"fsevents": "^2.0.7",
"jquery": "^3.4.0",
"lodash": "^4.17.15",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-particles-js": "^2.7.0",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-select": "^3.0.4",
"react-spinners": "^0.6.1",
"react-spotify-player": "^1.0.4"
}
}