forked from marilynyqt/fullstock-api-1125
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 KB
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
{
"name": "fullstock-api",
"scripts": {
"dev": "node --watch --env-file=.env src/server.ts",
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"db:new": "dbmate new",
"db:up": "dbmate up",
"db:migrate": "dbmate migrate",
"db:rollback": "dbmate rollback",
"db:status": "dbmate status",
"db:drop": "dbmate drop",
"db:reset": "npm run db:drop && npm run db:up"
},
"type": "module",
"engines": {
"node": ">=24"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tsconfig/node24": "^24.0.4",
"@tsconfig/strictest": "^2.0.8",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"@types/pg": "^8.20.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"globals": "^17.5.0",
"jiti": "^2.6.1",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0"
},
"dependencies": {
"camelcase-keys": "^10.0.2",
"dbmate": "^2.32.0",
"express": "^5.2.1",
"pg": "^8.20.0"
}
}