-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "auth-system-node",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon src/infra/http/server.ts",
"test": "jest",
"coverage": "jest --coverage",
"typeorm": "typeorm-ts-node-commonjs"
},
"author": "Sans-arch",
"license": "ISC",
"description": "",
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.5",
"express": "4.21.1",
"jsonwebtoken": "^9.0.2",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"typeorm": "0.3.20",
"uuid": "^11.0.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^16.11.10",
"@types/sqlite3": "^3.1.11",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"ts-jest": "^29.2.5",
"ts-node": "10.9.1",
"typescript": "4.5.2"
}
}