-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
{
"name": "8-track-using-spotify",
"version": "0.1.0",
"description": "A full-stack application that simulates an 8-track player via a premium user's Spotify account",
"main": "/server/app.js",
"engines": {
"node": "19"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server:dev": "nodemon ./server/app.js",
"server:prod": "export NODE_ENV=production; node ./server/app.js",
"client:prod": "cd ./client && npm run build",
"client:dev": "cd ./client && npm run start",
"db:create": "sequelize-cli db:create",
"db:migrate": "sequelize-cli db:migrate --env production",
"db:g:migration": "sequelize-cli migration:generate --name",
"db:seeds": "sequelize-cli db:seed:all",
"db:g:seed": "sequelize-cli seed:generate --name",
"db:drop": "sequelize-cli db:drop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anth-volk/8-track-using-spotify.git"
},
"author": "Anthony Volk",
"license": "MIT",
"bugs": {
"url": "https://github.com/anth-volk/8-track-using-spotify/issues"
},
"homepage": "https://github.com/anth-volk/8-track-using-spotify#readme",
"devDependencies": {
"create-react-app": "^5.0.1",
"nodemon": "^2.0.21",
"sequelize-cli": "^6.6.0"
},
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"jsonwebtoken": "^9.0.0",
"node-fetch": "^2.6.9",
"pg": "^8.10.0",
"pg-hstore": "^2.3.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sequelize": "^6.29.3"
}
}