This repository was archived by the owner on Dec 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.05 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"type": "module",
"private": true,
"name": "dev-research-mentorship-backend-lite",
"version": "3.5.0",
"description": "Express REST API backend for Dev Research Mentorship Project",
"keywords": [
"express",
"firebase",
"typescript",
"rest-api"
],
"homepage": "https://github.com/devosu/research-mentorship-backend-lite",
"bugs": {
"url": "https://github.com/devosu/research-mentorship-backend-lite/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Keming He",
"email": "[email protected]",
"url": "https://linkedin.com/in/keminghe"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/devosu/research-mentorship-backend-lite.git"
},
"packageManager": "[email protected]",
"scripts": {
"prepare": "husky || true",
"preinstall": "echo 'Currently using [email protected], remember to update: [ package.json, Dockerfile, and workflow files ].'",
"lint": "biome ci .",
"lint:fix": "biome check --write .",
"test": "pnpm run test:unit-and-snapshot && pnpm run test:feature",
"test:unit-and-snapshot": "NODE_ENV=test jest",
"test:feature": "cucumber-js",
"build": "pnpm run build:tsc && pnpm run build:docker:cacheless",
"build:tsc": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"postbuild:tsc": "echo 'Build complete: src/ -> dist/. Use `pnpm start` to start the server.'",
"prebuild:docker:cacheless": "echo 'Begin CLEAN Docker build test, image name: test-build-backend-0:latest.'",
"build:docker:cacheless": "docker build --no-cache -t test-build-backend-0:latest .",
"postbuild:docker:cacheless": "echo 'Docker CLEAN test build complete.'",
"start": "NODE_ENV=production node dist/app.js"
},
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv-safe": "^9.1.0",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"firebase-admin": "^12.2.0",
"http-status-codes": "^2.3.0",
"zod": "^3.23.8",
"zod-validation-error": "^3.3.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@cucumber/cucumber": "^10.8.0",
"@cucumber/cucumber-expressions": "^17.1.0",
"@cucumber/gherkin": "^28.0.0",
"@cucumber/pretty-formatter": "^1.0.1",
"@faker-js/faker": "^8.4.1",
"@jest/globals": "^29.7.0",
"@release-it/conventional-changelog": "^8.0.1",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/dotenv-safe": "^8.1.6",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.11",
"@types/supertest": "^6.0.2",
"commitizen": "^4.3.0",
"cucumber-tsflow": "^4.4.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.1",
"jest": "^29.7.0",
"release-it": "^17.6.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=22"
},
"os": [
"linux",
"darwin",
"win32"
],
"cpu": [
"x64",
"arm64"
]
}