-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.22 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.22 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": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run test:reset && jest --silent --verbose --detectOpenHandles --coverage",
"test:setup": "npx sequelize-cli db:create --env test && npx sequelize-cli db:migrate --env test && npx sequelize-cli db:seed:all --env test",
"test:reset": "npx sequelize-cli db:drop --env test && npx sequelize-cli db:create --env test && npx sequelize-cli db:migrate --env test && npx sequelize-cli db:seed:all --env test",
"dev": "npx nodemon bin/www"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Greets-RMT62/server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Greets-RMT62/server/issues"
},
"homepage": "https://github.com/Greets-RMT62/server#readme",
"dependencies": {
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"openai": "^5.8.2",
"pg": "^8.16.3",
"sequelize": "^6.37.7",
"socket.io": "^4.8.1"
},
"devDependencies": {
"dotenv": "^17.0.0",
"jest": "^30.0.3",
"nodemon": "^3.1.10",
"sequelize-cli": "^6.6.3",
"supertest": "^7.1.1"
}
}