-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.82 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
96
97
98
99
100
{
"name": "api",
"version": "1.3.12",
"description": "",
"keywords": [],
"author": "Lorhan Sohaky",
"license": "MIT",
"main": "src/index.ts",
"private": true,
"engines": {
"node": "16.x"
},
"scripts": {
"start": "NODE_ENV=production node dist/src/index.js",
"dev": "nodemon src/index.ts --ignore __tests__",
"build": "tsc",
"test": "jest --runInBand --detectOpenHandles",
"test:watch": "jest --watch --runInBand --detectOpenHandles",
"knex:migrate": "knex --knexfile knexfile.ts migrate:latest",
"knex:seed": "knex --knexfile knexfile.ts seed:run",
"lint": "eslint . --ext .ts,.json,.js,.md",
"lint:fix": "eslint . --ext .ts,.json,.js,.md --fix",
"gcp-build": "tsc",
"deploy": "gcloud app deploy"
},
"lint-staged": {
"*.+(ts|js|json|md)": [
"eslint . --ext .ts,.json,.js,.md --fix",
"git add"
],
"+(src|__tests__)/**/*.+(ts|js|json|md)": [
"eslint . --ext .ts,.json,.js,.md --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@lorhansohaky/schnorrkel.js": "^1.1.0",
"@sentry/node": "^6.3.5",
"@sentry/tracing": "^6.3.5",
"axios": "^0.21.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dayjs": "^1.10.4",
"dotenv-flow": "^3.2.0",
"express": "^4.18.2",
"express-validator": "^6.11.1",
"firebase-admin": "^11.5.0",
"helmet": "^3.23.3",
"ioredis": "^5.3.1",
"jsonwebtoken": "^9.0.0",
"knex": "^2.4.2",
"libsodium-wrappers": "^0.7.9",
"memory-cache": "^0.2.0",
"morgan": "^1.10.0",
"pg": "^8.6.0"
},
"devDependencies": {
"@types/apicache": "^1.2.2",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.10",
"@types/dotenv-flow": "^3.1.0",
"@types/express": "^4.17.11",
"@types/helmet": "0.0.48",
"@types/jest": "^25.2.3",
"@types/jsonwebtoken": "^8.5.1",
"@types/libsodium-wrappers": "^0.7.9",
"@types/memory-cache": "^0.2.1",
"@types/morgan": "^1.9.2",
"@types/node": "^12.20.12",
"@types/node-fetch": "^2.5.10",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.26.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-environment-uint8array": "^1.0.0",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.20",
"sqlite3": "^5.0.3",
"supertest": "^4.0.2",
"ts-jest": "^26.5.6",
"ts-node": "^8.10.2",
"typescript": "^4.2.4",
"uuid": "^8.3.2"
}
}