-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
95 lines (95 loc) · 3.53 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
{
"name": "dim-api",
"version": "1.0.0",
"description": "Destiny Item Manager API Server",
"main": "api/index.js",
"repository": "https://github.com/DestinyItemManager/dim-api",
"private": true,
"author": "Ben Hollis <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"start": "rm -rf dist && pnpm build:api && node -r dotenv/config dist/api/index.js",
"build:api": "mkdir -p ./dist/api/stately/generated && cp -r ./api/stately/generated/*.js ./dist/api/stately/generated && tsc -p ./api/tsconfig.json",
"deploy": "kubernetes/deploy.sh",
"docker:build": "rm -rf dist && pnpm build:api && docker build -t destinyitemmanager/dim-api .",
"docker:run": "docker run -p 3000:3000 destinyitemmanager/dim-api:latest",
"docker:push": "docker push destinyitemmanager/dim-api:latest",
"lint": "eslint --fix api",
"lint-check": "eslint api",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --detectOpenHandles --verbose --coverage --forceExit",
"test:watch": "jest --watch",
"eslint-inspect": "pnpm dlx @eslint/config-inspector",
"generate": "stately schema generate -l js --schema-id 8030842688320564 --version 2 api/stately/generated",
"generate-preview": "stately schema generate -l js --preview api/stately/schema/index.ts api/stately/generated",
"dim-api-types:build": "./build-dim-api-types.sh"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-object-rest-spread": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/compat": "^1.2.3",
"@eslint/js": "^9.14.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@sentry/cli": "^2.38.2",
"@stately-cloud/schema": "^0.10.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/lodash": "^4.17.13",
"@types/morgan": "^1.9.9",
"@types/pg": "^8.11.10",
"@types/uuid": "^10.0.0",
"@types/vhost": "3.0.7",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"db-migrate": "^0.11.14",
"db-migrate-pg": "^1.5.2",
"eslint": "^9.14.0",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-sonarjs": "^1.0.4",
"globals": "^15.12.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"rollup": "^4.26.0",
"supertest-fetch": "^2.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
},
"dependencies": {
"@bufbuild/protobuf": "^2.2.2",
"@godaddy/terminus": "^4.12.1",
"@google-cloud/profiler": "^6.0.2",
"@sentry/node": "^7.119.2",
"@sentry/tracing": "^7.114.0",
"@stately-cloud/client": "^0.12.0",
"bungie-api-ts": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.1",
"express-async-handler": "^1.2.0",
"express-hot-shots": "^1.0.2",
"express-jwt": "^8.4.1",
"hi-base32": "^0.5.1",
"hot-shots": "^10.2.1",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"pg": "^8.13.1",
"pg-protocol": "^1.7.0",
"slugify": "^1.6.6",
"uuid": "^11.0.3",
"vhost": "^3.0.2"
},
"packageManager": "[email protected]+sha256.8f5264ad1d100da11a6add6bb8a94c6f1e913f9e9261b2a551fabefad2ec0fec"
}