-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.02 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.02 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
{
"name": "sample",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "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",
"generateTypes": "npm run cli generatetypes",
"check:types": "npm run generateTypes && tsc --noEmit",
"check:types:raw": "tsc --noEmit",
"openApi": "node src/cli.ts getopenapijson --output='src/public/openApi.json'",
"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"
],
"ext": "js,ts",
"delay": "120ms",
"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.0.0-alpha.8",
"@adaptivestone/framework-module-email": "^1.0.1",
"@sentry/node": "^10.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": "~6.0.2",
"vitest": "^4.0.0"
}
}