-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (45 loc) · 979 Bytes
/
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
{
"name": "dtmoney",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "vitest",
"dev": "tsx watch src/server.ts",
"knex": "node --import tsx ./node_modules/knex/bin/cli.js",
"build": "tsup src --out-dir build",
"lint": "eslint src --ext .ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@types/supertest": "^6.0.2",
"dotenv": "^16.4.7",
"fastify": "^5.1.0",
"knex": "^3.1.0",
"pg": "^8.13.3",
"supertest": "^7.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@rocketseat/eslint-config": "^2.2.2",
"@types/node": "^22.9.3",
"eslint": "^8.0.0",
"sqlite3": "^5.1.7",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^3.0.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sqlite3"
]
}
}