-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.12 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
71
72
73
{
"name": "sample",
"version": "1.1.0",
"description": "",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "node scripts/ensure-env.ts && nodemon -L",
"dev:container": "docker compose exec backend bash",
"dev:c": "npm run dev:container",
"dev:l": "docker compose logs backend -f -n=100",
"test": "vitest run",
"t": "vitest --coverage=false --reporter=default",
"format": "biome format",
"format:fix": "biome format --write",
"knip": "knip",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"check": "biome check",
"check:fix": "biome check --write",
"docker": "npm i && npm run dev",
"cli": "node src/cli.ts",
"gen": "npm run cli generatetypes",
"generateTypes": "npm run gen",
"check:types": "npm run gen && tsc --noEmit",
"check:types:raw": "tsc --noEmit",
"docs:download": "node scripts/download-docs.ts",
"docker:build": "docker buildx build --platform linux/amd64,linux/arm64 -t registry.gitlab.com/adaptivestone/example-project:latest . --push"
},
"nodemonConfig": {
"ignore": [
"src/locales/**/*.json",
"src/**/*.test.js",
"src/**/*.test.ts",
"*.d.ts",
"*.routes.gen.ts"
],
"ext": "js,ts",
"delay": 120,
"exec": "npm run cli generatetypes; fuser -k 9229/tcp; node --inspect=0.0.0.0 ./src/server.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com:adaptivestone/example-project.git"
},
"author": {
"name": "Adaptivestone team",
"email": "info@adaptivestone.com",
"url": "https://adaptivestone.com"
},
"license": "ISC",
"dependencies": {
"@adaptivestone/framework": "^5.1.0",
"@adaptivestone/framework-module-email": "^2.0.0",
"@sentry/node": "^10.0.0",
"i18next": "^26.0.1",
"zod": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@types/express": "^5.0.1",
"@vitest/coverage-v8": "^4.0.0",
"mongodb-memory-server": "^11.0.0",
"nodemon": "^3.0.1",
"typescript": "^7.0.1-rc",
"vitest": "^4.0.0"
},
"overrides": {
"i18next": {
"typescript": "$typescript"
}
}
}