-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
{
"name": "open-league",
"version": "0.0.1",
"private": true,
"scripts": {
"clean": "rimraf dist/",
"build": "yarn clean && tsc && yarn copy",
"dev": "nodemon --exec ts-node ./src/bin/www.ts --watch",
"start": "node dist/bin/www.js",
"copy": "copyfiles -u 1 src/**/*.webp dist/"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"cron": "^1.8.2",
"debug": "~2.6.9",
"discord-oauth2": "^2.5.0",
"dotenv-safe": "^8.2.0",
"express": "~4.16.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.7",
"mongoose-paginate-v2": "^1.3.9",
"morgan": "~1.9.1",
"sharp": "^0.26.3",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.7",
"@types/cron": "^1.7.2",
"@types/debug": "^4.1.5",
"@types/dotenv-safe": "^8.1.1",
"@types/express": "^4.17.8",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.36",
"@types/mongoose-paginate-v2": "^1.3.8",
"@types/morgan": "^1.9.1",
"@types/node": "^14.11.2",
"@types/sharp": "^0.26.1",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"copyfiles": "^2.4.1",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-simple-import-sort": "^5.0.3",
"nodemon": "^2.0.4",
"prettier-eslint": "^11.0.0",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}