-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 KB
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
{
"name": "kei",
"version": "1.2.1",
"description": "easy temporary music file upload 🎶",
"main": "dist/src/index.js",
"repository": "https://github.com/DisqTeam/kei.git",
"author": "etstringy <eddyteddyt@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "ts-node-dev src/index.ts --respawn --transpile-only",
"start-prod": "yarn build && node dist/src/index.js"
},
"dependencies": {
"@types/cors": "^2.8.9",
"@types/express": "^4.17.9",
"@types/express-rate-limit": "^5.1.0",
"@types/multer": "^1.4.5",
"@types/randomstring": "^1.1.6",
"cors": "^2.8.5",
"dayjs": "^1.9.8",
"express": "^4.17.1",
"express-rate-limit": "^5.2.3",
"mongoose": "^5.11.9",
"multer": "^1.4.2",
"randomstring": "^1.1.5",
"sanitize": "^2.1.0",
"typescript": "^4.1.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.16.0",
"ts-node-dev": "^1.1.1"
}
}