-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "miusik",
"version": "1.0.0",
"description": "Music analysis application",
"main": "main.js",
"scripts": {
"start": "node src/server/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --mode=development --watch",
"build": "webpack --mode=production",
"heroku-postbuild": "webpack --mode=production",
"prod": "npm run build && npm start",
"hot": "exec node_modules/.bin/webpack-dev-server"
},
"engines": {
"node": ">=10.15.0"
},
"author": "Jose Aviles",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"express": "^4.16.4",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"spotify-web-api-node": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": ">=7.1.2",
"eslint-plugin-react": "^7.12.4",
"nodemon": ">=1.18.9",
"nodemon-webpack-plugin": ">=4.0.7",
"react-hot-loader": "^4.6.3",
"webpack": ">=4.0.0",
"webpack-cli": ">=3.2.0",
"webpack-dev-server": "^3.1.14"
}
}