-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.09 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
{
"name": "ddonation-backend",
"version": "1.0.0",
"description": "",
"main": "./src/main/server.ts",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --ignore-watch node_modules src/main/server.ts",
"lint-code": "eslint src --max-warnings=0",
"lint-staged": "lint-staged",
"commit": "cz",
"test": "set LOG_DISABLED=true && set NODE_OPTIONS=--experimental-vm-modules --no-warnings && jest --no-cache",
"test:watch": "set LOG_DISABLED=true && set NODE_OPTIONS=--experimental-vm-modules --no-warnings && jest --no-cache --watchAll",
"test:coverage": "set LOG_DISABLED=true && set NODE_OPTIONS=--experimental-vm-modules --no-warnings && jest --no-cache --watchAll --coverage tests/unit"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"init": "0.1.2",
"jest": "^27.5.1",
"lint-staged": "^12.3.8",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3"
},
"dependencies": {
"@prisma/client": "^3.12.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"pino": "^7.10.0",
"pino-pretty": "^7.6.1",
"prisma": "^3.12.0"
},
"lint-staged": {
"src/**/*": [
"npm run lint-code --fix"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}