-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1000 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
{
"name": "shopper-testetecnico-leituras-backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev src/index.ts",
"test": "rimraf ./prisma/tests.db && rimraf ./images/* --glob && dotenv -v DATABASE_URL=\"file:./tests.db\" -- prisma migrate deploy && jest",
"build": "rimraf ./build && tsc --project tsconfig.build.json",
"start": "node build/index.js"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/static": "^7.0.4",
"@google/generative-ai": "^0.17.1",
"@prisma/client": "^5.19.0",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"fastify": "^4.28.1",
"joi": "^17.13.3",
"module-alias": "^2.2.3"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/module-alias": "^2.0.4",
"@types/node": "^22.5.0",
"jest": "^29.7.0",
"prisma": "^5.19.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
}
}