-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.48 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.48 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "educational-ai-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint '**/*.{ts,tsx}'",
"typecheck": "tsc --noEmit",
"test:dev": "jest --watch",
"test:ci": "jest",
"build": "npx prisma generate --schema ./prisma/schema && tsup src k6 --out-dir dist --sourcemap inline",
"dev": "ts-node-dev --respawn -r tsconfig-paths/register src/server.ts",
"start": "node -r tsconfig-paths/register dist/server.js",
"migrate": "prisma migrate dev --schema ./prisma/schema",
"push": "prisma db push --schema ./prisma/schema",
"k6-users-test": "k6 run dist/k6/users/index.js -a localhost:6566",
"k6-favourite-plans-test": "k6 run dist/k6/favourite-plans/index.js -a localhost:6566",
"k6-finished-study-plans-test": "k6 run dist/k6/finished-study-plans/index.js -a localhost:6566",
"k6-finished-weekly-plans-test": "k6 run dist/k6/finished-weekly-plans/index.js -a localhost:6566",
"k6-weekly-plans-test": "k6 run dist/k6/weekly-plans/index.js -a localhost:6566",
"k6-all-tests": "bash ./scripts/run-all-k6-tests.sh"
},
"keywords": [],
"author": "Vitor Gabriel Silva",
"license": "ISC",
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.0.1",
"@fastify/jwt": "^9.1.0",
"@prisma/client": "^6.7.0",
"@types/k6": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"dotenv-cli": "^8.0.0",
"eslint-plugin-import-helpers": "^2.0.1",
"eslint-plugin-perfectionist": "^4.12.3",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-unused-imports": "^4.1.4",
"express": "^5.1.0",
"fastify": "^5.3.2",
"google-auth-library": "^9.15.1",
"k6": "^0.0.0",
"prisma": "^6.3.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vercel/style-guide": "^5.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-config-turbo": "^2.0.0",
"eslint-plugin-only-warn": "^1.1.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.2.4"
},
"prisma": {
"schema": "prisma/schema/schema.prisma"
}
}