-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.28 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
49
50
51
52
{
"name": "time-for-code",
"version": "1.0.0",
"description": "App para educação infantil na área da tecnologia da informação",
"main": "server.js",
"type": "module",
"license": "AGPL-version-3.0",
"private": false,
"engines": {
"node": ">= 14.0.0",
"npm": ">= 6.0.0"
},
"homepage": "",
"repository": {
"type": "git",
"url": ""
},
"bugs": "",
"keywords": [],
"author": {
"name": "",
"email": "",
"url": ""
},
"contributors": [],
"scripts": {
"dev": "node --watch --env-file=.env server.js",
"start": "node server.js",
"build": "npx prisma generate && npx prisma db push",
"test": ""
},
"dependencies": {
"": "file:",
"@prisma/adapter-pg": "^6.5.0",
"@prisma/client": "^6.11.1",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.6.0",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.14",
"prisma": "^6.11.1",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}