-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.57 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "tasks-api-express",
"version": "1.0.0",
"repository": "git@github.com:macchiitaka/tasks-api-express.git",
"license": "MIT",
"author": "macchiitaka <zxcvbnmtacashi@gmail.com>",
"main": "build/index.js",
"scripts": {
"build": "run-s prisma:migrate build:tsc",
"build:tsc": "tsc --incremental false",
"coverage": "run-p coverage:**",
"coverage:jest": "jest --coverage --passWithNoTests",
"doc:build": "npx redoc-cli bundle ./api.yml -o ./doc/index.html --options.expandResponses=all",
"doc:watch": "npx redoc-cli serve ./api.yml --watch --options.expandResponses=all",
"fmt": "run-s fmt:prettier fmt:package-json fmt:eslint",
"fmt:prettier": "prettier --write --tab-width 2 \"**/*.{js,jsx,ts,tsx,json,md,yaml,yml}\"",
"fmt:eslint": "eslint \"**/*.{js,jsx,ts,tsx}\" --cache --cache-strategy content --fix",
"fmt:package-json": "sort-package-json",
"initialize": "run-p initialize:*",
"postinstall": "run-p postinstall:**",
"lint": "run-p lint:**",
"lint:eslint": "eslint \"**/*.{js,jsx,ts,tsx}\" --cache --cache-strategy content",
"lint:typescript": "tsc -p . --noEmit",
"postinstall:husky": "is-ci || husky install",
"postinstall:prisma": "prisma generate",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate deploy",
"start": "ts-node-dev src/infrastructure/server.ts",
"test": "npm run test:watch",
"test:once": "jest --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"type-watch": "tsc --noEmit -w"
},
"resolutions": {
"@types/mime": "4.0.0",
"hosted-git-info": "^7.0.0"
},
"dependencies": {
"@prisma/client": "3.15.2",
"cors": "^2.8.5",
"express": "^4.17.2",
"helmet": "^7.0.0",
"prisma": "3.15.2",
"tslib": "^2.3.1",
"zod": "^3.11.6"
},
"devDependencies": {
"@takamachi/eslint-config": "2.9.13",
"@types/cors": "2.8.17",
"@types/eslint": "8.56.9",
"@types/express": "4.17.21",
"@types/helmet": "4.0.0",
"@types/is-ci": "3.0.4",
"@types/jest": "29.5.12",
"@types/node": "14.18.63",
"@types/prettier": "3.0.0",
"eslint": "8.57.0",
"eslint-plugin-jest": "28.2.0",
"husky": "8.0.3",
"is-ci": "3.0.1",
"jest": "29.7.0",
"lint-staged": "14.0.1",
"npm-run-all2": "6.1.2",
"pinst": "3.0.0",
"prettier": "3.2.5",
"sort-package-json": "2.10.0",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "5.4.5"
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": "20.12.2",
"yarn": "1.22.22"
}
}