-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.49 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
46
47
48
49
50
51
52
53
54
55
{
"license": "ISC",
"author": {
"name": "Saddam Satria"
},
"scripts": {
"start": "nodemon --exec ts-node src/main.ts",
"lint": "eslint --fix src",
"prettier": "prettier --write src",
"prepare": "husky install",
"test": "mocha --timeout 10000 -r ts-node/register 'tests/**/*.ts'",
"build": "tsc"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-http": "^4.2.0",
"@types/jsonwebtoken": "^9.0.5",
"@types/mocha": "^9.1.0",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.3",
"mocha": "^9.2.2",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"prisma": "^5.8.1",
"ts-node": "^10.4.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@fastify/cors": "^8.5.0",
"@fastify/rate-limit": "^9.1.0",
"@fastify/static": "^6.12.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^2.1.0",
"@prisma/client": "^5.8.1",
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"fastify": "^4.25.2",
"fastify-plugin": "^4.5.1",
"http-status": "^1.7.3",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1"
}
}