forked from DestinyItemManager/dim-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.66 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
{
"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",
"scripts": {
"start": "rm -rf dist && yarn build:api && node -r dotenv/config dist/api/index.js",
"build:api": "tsc -p ./api/tsconfig.json",
"deploy": "kubernetes/deploy.sh",
"docker:build": "rm -rf dist && yarn 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 --ext .js,.ts",
"lint-check": "eslint api --ext .js,.ts",
"test": "jest --verbose --coverage api --forceExit --detectOpenHandles",
"test:watch": "jest --watch",
"dim-api-types:build": "./build-dim-api-types.sh"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@sentry/cli": "^2.2.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.1",
"@types/express-jwt": "^6.0.0",
"@types/jest": "^28.1.3",
"@types/jsonwebtoken": "^8.3.5",
"@types/lodash": "^4.14.149",
"@types/morgan": "^1.7.37",
"@types/pg": "^8.6.0",
"@types/superagent": "^4.1.3",
"@types/supertest": "^2.0.8",
"@types/uuid": "^8.0.0",
"@types/vhost": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"db-migrate": "^0.11.6",
"db-migrate-pg": "^1.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^28.1.1",
"prettier": "^2.0.4",
"prettier-plugin-organize-imports": "^3.0.0",
"supertest": "^6.0.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@godaddy/terminus": "^4.3.1",
"@sentry/node": "^7.3.0",
"@sentry/tracing": "^7.3.0",
"bungie-api-ts": "^4.2.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-hot-shots": "^1.0.2",
"express-jwt": "^7.7.5",
"hi-base32": "^0.5.1",
"hot-shots": "^9.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"morgan": "^1.9.1",
"pg": "^8.0.0",
"slugify": "^1.6.5",
"superagent": "^8.0.0",
"uuid": "^8.1.0",
"vhost": "^3.0.2"
}
}