-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 1.17 KB
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 1.17 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
{
"name": "music-data-server",
"version": "1.0.0",
"description": "Music Data Server",
"scripts": {
"test": "jest -i --forceExit ",
"single-test": "./node_modules/.bin/jest --runTestsByPath -i --forceExit __tests__/createPlayer.test.js",
"start": "babel-node ./src/index.js",
"dev": "nodemon --exec npm start",
"migrate:up": "npx sequelize-cli db:migrate",
"migrate:undo": "npx sequelize-cli db:migrate:undo"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.11",
"babel-jest": "^28.0.2",
"jest": "^28.0.2",
"jest-fetch-mock": "^3.0.3",
"sequelize-cli": "^6.6.1",
"supertest": "^6.2.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.17.3",
"express-rate-limit": "^6.3.0",
"jsonwebtoken": "^9.0.1",
"nodemon": "^3.0.1",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.17.0",
"sqlite3": "^5.0.2"
}
}