-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 851 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
{
"name": "igma_customer_base",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsup src",
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"knex": "node --no-warnings --loader tsx ./node_modules/.bin/knex",
"test": "vitest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.13.0",
"@types/supertest": "^2.0.12",
"dotenv": "^16.0.3",
"pino-pretty": "^9.3.0",
"supertest": "^6.3.3",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"vitest": "^0.28.5"
},
"dependencies": {
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.4.0",
"fastify": "^4.13.0",
"knex": "^2.4.2",
"mysql": "^2.18.1",
"sqlite3": "^5.1.4",
"tsup": "^6.7.0",
"zod": "^3.20.6"
}
}