-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "data-louna-test",
"version": "1.0.0",
"description": "Data Louna Test",
"main": "src/app.ts",
"type": "module",
"directories": {
"test": "src/test"
},
"engines": {
"node": ">=20.x"
},
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"dev": "tsx watch src/app.ts",
"test": "node --test src/test/**/*.test.js",
"migrate": "NODE_OPTIONS='--loader ts-node/esm' ts-node src/database/migrations/migrationRunner.ts",
"seed": "NODE_OPTIONS='--loader ts-node/esm' ts-node src/database/seeds/seedRunner.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^6.0.0",
"@fastify/cookie": "^11.0.1",
"@fastify/sensible": "^6.0.0",
"bcrypt": "^5.1.1",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.5",
"fastify": "^5.0.0",
"fastify-cli": "^7.0.1",
"fastify-plugin": "^5.0.0",
"graphql": "^16.9.0",
"mercurius": "^15.1.0",
"mysql2": "^3.11.4",
"node-cron": "^3.0.3",
"tap": "^21.0.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "^22.8.4",
"@types/node-cron": "^3.0.11",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}