-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.6 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
{
"name": "comic-db",
"private": true,
"scripts": {
"build": "tsc --build tsconfig.build.json",
"dev": "ts-node-dev src/index.ts",
"start": "node dist/index.js",
"ts-check": "tsc --noEmit",
"lint": "scripty",
"lint:circleci": "scripty",
"lint:codecov": "scripty",
"lint:eslint": "scripty",
"lint:hadolint": "scripty",
"lint:prettier": "scripty",
"lint:renovate": "scripty",
"fmt": "run-s -cn fmt:*",
"fmt:eslint": "yarn lint:eslint --fix",
"fmt:prettier": "yarn lint:prettier --write",
"commitlint": "commitlint"
},
"dependencies": {
"@apollo/gateway": "0.26.3",
"apollo-server-express": "2.23.0",
"compression": "1.7.4",
"cors": "2.8.5",
"express": "4.17.1",
"graphql": "15.5.1",
"helmet": "4.6.0",
"jsonwebtoken": "8.5.1",
"morgan": "1.10.0",
"supertokens-node": "5.0.1"
},
"devDependencies": {
"@arkweid/lefthook": "0.7.6",
"@bo2kshelf/eslint-config": "1.1.1",
"@bo2kshelf/prettier-config": "1.0.0",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/compression": "1.7.0",
"@types/cors": "2.8.10",
"@types/express": "4.17.12",
"@types/jsonwebtoken": "8.5.3",
"@types/morgan": "1.9.2",
"@types/node": "15.0.3",
"eslint": "7.22.0",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"prettier-plugin-optipack": "1.1.2",
"prettier-plugin-organize-imports": "1.1.1",
"scripty": "2.0.0",
"ts-loader": "8.0.18",
"ts-node": "9.1.1",
"ts-node-dev": "1.1.8",
"tsconfig-paths": "3.9.0",
"typescript": "4.2.4"
}
}