-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 891 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 891 Bytes
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
{
"name": "api-growtwitter",
"version": "1.0.0",
"description": "API do GrowTwitter, projeto full stack II da formação desenvolvimento web full stack da Growdev.",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn ./src/index.ts",
"build": "tsc",
"start": "node ./dist/index.js",
"postinstall": "npm run build"
},
"author": "Rafael Schenkel de Souza",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.18",
"@types/express": "^5.0.2",
"@types/jsonwebtoken": "^9.0.9",
"@types/uuid": "^10.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@prisma/client": "^6.8.2",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"prisma": "^6.8.2",
"uuid": "^11.1.0"
}
}