forked from MultiverseLearningProducts/express-get-musicians
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 787 Bytes
/
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
{
"name": "musicians-bands",
"version": "1.0.0",
"description": "A Sequelize DB for bands to organize their songs and musicians",
"main": "index.js",
"scripts": {
"test": "jest --watch",
"seed": "node seed.js",
"start": "node server.js",
"start-dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MultiverseLearningProducts/musicians-bands.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MultiverseLearningProducts/musicians-bands/issues"
},
"dependencies": {
"express": "^4.17.3",
"jest": "27.5.1",
"sequelize": "^6.21.4",
"sqlite3": "^5.0.11"
},
"devDependencies": {
"nodemon": "^2.0.15",
"supertest": "^6.3.3"
}
}