-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
56
57
58
59
60
61
62
63
{
"name": "Canline",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "cross-env NODE_ENV=prod node dist/index.js",
"start:dev": "cross-env DEBUG=FP* NODE_ENV=dev PORT=3000 node --watch --env-file=.env dist/index.js",
"start:mon": "cross-env DEBUG=FP* NODE_ENV=dev PORT=3000 nodemon dist/index.js",
"build": "tsc",
"dev": "tsc -w",
"test": "jest",
"test:dev": "cross-env NODE_ENV=test jest --watchAll --coverage",
"test:prod": "jest --passWithNoTests --coverage",
"lint": "eslint . --ext .ts",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"prettier": {
"singleQuote": true
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.44.0",
"eslint-config-xo-typescript": "^4.0.0",
"jest": "^29.7.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@prisma/client": "^5.13.0",
"bcrypt": "^5.1.1",
"cloudinary": "^2.2.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"debug": "^4.3.4",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"husky": "^9.0.11",
"joi": "^17.12.3",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.1.0",
"prisma": "^5.13.0"
}
}