-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 907 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
33
34
35
{
"name": "api-client",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node index.js",
"dev": "NODE_ENV=development nodemon index.js",
"init:config": "sequelize init:config",
"db:create": "sequelize db:create",
"lint": "eslint **/*.js",
"test": "NODE_ENV=test jest --coverage --verbose",
"test-watch": "jest --watchAll --coverage --verbose"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"base-64": "^1.0.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"eslint": "^7.32.0",
"express": "^4.18.2",
"jest": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"pg": "^8.11.0",
"sequelize": "^6.32.1",
"sequelize-cli": "^6.6.1",
"sqlite3": "^5.1.6",
"supertest": "^6.3.3"
}
}