-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 950 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 950 Bytes
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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint **/*.js",
"test": "echo \"Error: no test specified\" && exit 1",
"db:config": "sequelize init:config",
"db:create": "sequelize db:create"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Team-KEG/backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Team-KEG/backend/issues"
},
"homepage": "https://github.com/Team-KEG/backend#readme",
"dependencies": {
"axios": "^0.27.2",
"base-64": "^1.0.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jest": "^28.1.3",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.3",
"sequelize": "^6.21.3",
"sequelize-cli": "^6.4.1",
"sqlite3": "^5.0.11",
"supertest": "^6.2.4"
}
}