-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
{
"name": "menheraapi",
"version": "5.2.2",
"description": "An HTTP API to help MenheraBot",
"main": "dist/server.js",
"private": true,
"scripts": {
"start": "node .",
"build": "tsc && cp -r src/data/database/generated dist/data/database/generated",
"typecheck": "tsc --noEmit",
"lint:fix": "eslint --fix --ext ts src",
"dev": "tsnd --ignore node_modules --transpile-only --no-notify --respawn -r dotenv/config src/server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "3.13.0",
"cors": "^2.8.5",
"express": "^4.20.0",
"express-rate-limit": "^6.3.0",
"ioredis": "^5.4.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2",
"dotenv": "^16.0.1",
"eslint": "7.14.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "6.15.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.1.4",
"prettier": "2.2.1",
"prisma": "3.13.0",
"ts-node-dev": "^1.1.8",
"typescript": "4.1.2"
}
}