-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 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
63
64
65
66
67
{
"name": "node-boilderplate",
"version": "0.0.1",
"main": "src/index.ts",
"author": "Rytis Grincevicius <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "debug=* NODE_PATH=./src ts-node-dev --respawn --exit-child ./src/index.ts",
"build": "rimraf build && tsc",
"start": "NODE_ENV=production NODE_PATH=./build node ./build/index.js",
"docker:dev": "./scripts/dev.sh",
"docker:bash": "docker compose exec node-api bash",
"lint": "eslint --ext .ts src --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"studio": "drizzle-kit studio",
"migrate": "tsx src/database/migrate.ts",
"migrate:generate": "drizzle-kit generate",
"migrate:drop": "drizzle-kit drop",
"db:push": "drizzle-kit push",
"db:seed": "tsx src/database/seed.ts",
"db:reset": "tsx src/database/reset.ts",
"test": "jest --passWithNoTests",
"coverage": "jest --coverage"
},
"dependencies": {
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"drizzle-orm": "^0.36.4",
"express": "^4.18.2",
"express-rate-limit": "^7.4.0",
"express-robots-txt": "^1.0.0",
"helmet": "^6.0.0",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"pino": "^9.3.2",
"pino-cloud-run": "^0.0.2",
"pino-http": "^10.2.0",
"pino-pretty": "^11.2.2",
"postgres": "^3.4.3",
"rimraf": "^3.0.2",
"typescript": "^4.9.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.191",
"@types/node": "^18.12.1",
"@types/pg": "^8.11.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"drizzle-kit": "^0.28.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"pg": "^8.11.3",
"prettier": "^2.8.1",
"ts-jest": "^29.2.4",
"ts-node-dev": "^2.0.0",
"tsx": "^4.7.1"
}
}