generated from t-rex777/ts-backend-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.84 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
{
"name": "ezsplit_api",
"version": "1.0.0",
"description": "",
"main": "dist/src/app.js",
"scripts": {
"build": "npx tsc",
"db:setup": "docker-compose up -d",
"db:migrate": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:seed": "npx tsx ./src/db/seed.ts",
"lint": "eslint src/**/*.ts --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"dev:api": "nodemon --watch './**/*.ts' --exec 'ts-node' ./src/app.ts",
"dev": "cross-env NODE_ENV=development run-s db:migrate dev:api",
"prod": "NODE_ENV=production nodemon --watch './**/*.ts' --exec 'ts-node' ./src/app.ts",
"start:api": "node dist/src/app.js",
"start": "NODE_ENV=production run-s db:generate db:migrate start:api"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@flydotio/dockerfile": "^0.5.8",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/pg": "^8.11.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"cross-env": "^7.0.3",
"esbuild-register": "^3.6.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"drizzle-kit": "^0.22.8",
"morgan": "^1.10.0",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.31.4",
"express": "^4.21.0",
"fuse.js": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.0",
"postgres": "^3.4.4"
},
"engines": {
"node": "20.10.0"
}
}