-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.67 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
{
"name": "infernalstudios.org",
"version": "1.4.0",
"private": true,
"description": "Source code for <https://infernalstudios.org>!",
"bugs": "https://github.com/infernalexp/infernalstudios.org/issues",
"repository": {
"type": "git",
"url": "https://github.com/infernalexp/infernalstudios.org.git"
},
"license": "ARR",
"author": {
"name": "Infernal Studios",
"email": "[email protected]",
"url": "https://infernalstudios.org"
},
"contributors": [
{
"name": "Kārlis Čerņavskis",
"email": "[email protected]",
"url": "https://cernavskis.dev"
}
],
"main": "dist/index.js",
"scripts": {
"apply-patches": "node scripts/apply-patches.js",
"build": "yarn build:only",
"build:only": "tsc",
"build:noemit": "yarn build --noEmit",
"build:watch": "tsc -w",
"copy-spectre-css": "node scripts/copy-spectre-css.js",
"predocs": "node scripts/clearDirectory.js docs",
"docs": "redoc-cli bundle spec/api.yml --dereferenced --ext yml --lint --output docs/index.html --title \"Infernal Studios API\"",
"postdocs": "node scripts/postdocs.js docs/index.html",
"docs:lint": "redoc-cli lint spec/api.yml",
"format:check": "prettier --config .prettierrc.json --check spec src public *.json .*.json scripts .github",
"format": "prettier --config .prettierrc.json --write spec src public *.json .*.json scripts .github",
"lint:fix": "eslint src --fix",
"lint": "eslint src",
"prebuild": "yarn format:check && yarn lint",
"prepare": "husky install",
"postinstall": "yarn apply-patches && yarn copy-spectre-css",
"start": "node . start"
},
"dependencies": {
"chalk": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-static-gzip": "^2.1.7",
"fs-extra": "^10.1.0",
"helmet": "^5.1.0",
"knex": "^1.0.7",
"logerian": "^2.0.0",
"minimist": "^1.2.6",
"pg": "^8.7.3",
"rate-limiter-flexible": "^2.3.7",
"semver": "^7.3.7",
"spectre.css": "^0.5.9",
"zod": "^3.17.3"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/minimist": "^1.2.2",
"@types/node": "^18.0.0",
"@types/semver": "^7.3.10",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"prettier-package-json": "^2.6.4",
"prettier-plugin-organize-imports": "^3.0.0",
"redoc-cli": "^0.13.16",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16.0.0",
"yarn": "^1.22.0"
}
}