-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.66 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.66 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
{
"name": "y",
"version": "1.0.0",
"description": "Student Progress API",
"license": "ISC",
"author": "",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "npm run dev:redis && concurrently -k \"npm:dev:proxy\" \"npm:dev:app\"",
"dev:proxy": "cloud-sql-proxy --auto-iam-authn student-progress-staging:europe-west3:student-progress-mysql-staging --port 3306",
"dev:redis": "docker start student-progress-redis",
"dev:app": "tsx watch src/index.ts",
"db:test": "tsx --tsconfig tsconfig.scripts.json scripts/test-db-connection.ts",
"db:migrate": "tsx --tsconfig tsconfig.scripts.json scripts/run-migrations.ts",
"db:seed": "tsx --tsconfig tsconfig.scripts.json scripts/run-seed.ts",
"db:reset": "tsx --tsconfig tsconfig.scripts.json scripts/reset-db.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "echo \"No tests configured yet\""
},
"engines": {
"node": ">=22 <23"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/debug": "^4.1.13",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"concurrently": "^9.2.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.59.1"
},
"dependencies": {
"@google-cloud/cloud-sql-connector": "^1.10.0",
"debug": "^4.4.3",
"dotenv": "^17.4.1",
"express": "^5.2.1",
"helmet": "^8.1.0",
"joi": "^18.1.2",
"mysql2": "^3.21.1",
"redis": "^5.11.0"
}
}