-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 KB
/
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
36
37
38
{
"name": "devquest",
"version": "1.0.0",
"description": "Hobby Hive is a platform specifically for connecting people with similar hobbies or interests. Users can join communities, share tips and tutorials, and collaborate on projects related to their hobbies.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "npx node-dev src/server.js",
"start-dev": "npx nodemon src/server.js",
"migrate": "npm run delete-db && npx knex migrate:latest",
"seed": "npx knex seed:run",
"db": "npm run migrate && npm run seed",
"delete-db": "del-cli main.sqlite",
"test": "vitest --config=vitest.config.js"
},
"author": "DevGrade",
"license": "ISC",
"devDependencies": {
"jest-junit": "^16.0.0",
"supertest": "^6.3.3",
"supertest-session": "^4.1.0",
"vitest": "^1.0.4"
},
"dependencies": {
"@babel/preset-env": "^7.22.5",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"del-cli": "^5.0.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"iojs": "^1.0.0",
"jsonwebtoken": "^9.0.1",
"knex": "^2.4.2",
"nodemon": "^3.0.2",
"socket.io": "^4.6.2",
"sqlite3": "^5.1.6"
}
}