forked from rmt-32-freesia-fox/p2-iproject-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
41
42
43
44
45
46
47
48
{
"name": "p2-iproject-server",
"version": "1.0.0",
"description": "Individual Project - Server",
"main": "index.js",
"engines": {
"node": "18.x"
},
"scripts": {
"reset-dev": "sequelize db:drop && sequelize db:create && sequelize db:migrate",
"reset-test": "sequelize --env test db:drop && sequelize --env test db:create && sequelize --env test db:migrate",
"migrate": "sequelize db:migrate",
"dev": "nodemon bin/www",
"start": "npm run migrate && node bin/www",
"test": "jest --runInBand --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0wx/p2-iproject-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/0wx/p2-iproject-server/issues"
},
"homepage": "https://github.com/0wx/p2-iproject-server#readme",
"dependencies": {
"axios": "^1.3.2",
"cors": "^2.8.5",
"do_username": "^1.0.0",
"express": "^4.18.2",
"imgbox": "^1.1.3",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"pg": "^8.9.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.28.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"dotenv": "^16.0.3",
"jest": "^29.4.1",
"nodemon": "^2.0.20",
"sequelize-cli": "^6.6.0",
"supertest": "^6.3.3"
}
}