-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "node-base-project",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"build:dev": "tsc && node dist/app.js",
"tsc:watch": "tsc --watch",
"start": "ts-node-dev --transpile-only --ignore-watch node_modules src/app.ts",
"prettier": "prettier --write \"**/*.*\"",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.4.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"joi": "^17.6.3",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"prisma": "^4.4.0"
},
"devDependencies": {
"@swc/core": "^1.3.9",
"@swc/jest": "^0.2.23",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/multer": "^1.4.7",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.1",
"prettier": "^2.7.1",
"supertest": "^6.3.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4",
"uuid": "^9.0.0"
}
}