-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
39
40
41
42
43
44
45
{
"name": "projeto-labook-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./build/index.js",
"build": "tsc",
"dev": "ts-node-dev ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amandapolari/projeto-labook-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/amandapolari/projeto-labook-backend/issues"
},
"homepage": "https://github.com/amandapolari/projeto-labook-backend#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/jsonwebtoken": "^9.0.5",
"@types/knex": "^0.16.1",
"@types/node": "^20.8.9",
"@types/uuid": "^9.0.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"knex": "^3.0.1",
"sqlite3": "^5.1.6",
"uuid": "^9.0.1",
"zod": "^3.22.4"
}
}