-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "planetpoints",
"version": "1.0.0",
"description": "Sustainability Tracker",
"main": "src/server.js",
"type": "module",
"scripts": {
"start": "concurrently \"npm run backend\" \"npm run client\"",
"backend": "tsx watch server/src/server.ts",
"client": "cd client && npm run dev",
"test": "cross-env NODE_ENV=test vitest",
"test:watch": "cross-env NODE_ENV=test vitest --watch"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^11.1.0",
"@fastify/passport": "^3.0.2",
"@fastify/secure-session": "^8.2.0",
"axios": "^1.5.0",
"bcrypt": "^6.0.0",
"dotenv": "^17.2.3",
"fastify": "^5.6.0",
"fastify-secure-session": "^3.1.0",
"mongoose": "^8.19.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/fastify-cors": "^0.1.0",
"@types/node": "^24.5.1",
"@types/passport-local": "^1.0.38",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"supertest": "^7.1.4",
"tsx": "^4.20.5",
"typescript": "^5.2.2",
"vitest": "^3.2.4"
}
}