-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
62 lines (62 loc) · 1.77 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
{
"name": "@cryb/api",
"version": "1.0.0",
"description": "The core service used to handle REST and WS events from clients",
"main": "dist/index.js",
"repository": "https://github.com/crybapp/api.git",
"author": "JeDaYoshi <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node dist",
"dev": "tsc-watch --compiler typescript/bin/tsc --onSuccess \"yarn start\"",
"build": "tsc",
"lint": "eslint src/**/*.ts{,x}"
},
"dependencies": {
"axios": "^0.19.0",
"biguint-format": "^1.0.1",
"chance": "^1.0.18",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"flake-idgen": "^1.1.2",
"helmet": "^3.21.0",
"ioredis": "^4.14.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"md5": "^2.2.1",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-discord": "^0.1.3",
"passport-jwt": "^4.0.0",
"qs": "^6.8.0",
"query-string": "^6.8.2",
"supertest": "^4.0.2",
"ws": "^7.1.1"
},
"devDependencies": {
"@types/chance": "^1.0.6",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.0",
"@types/ioredis": "^4.0.17",
"@types/lodash": "^4.14.144",
"@types/md5": "^2.1.33",
"@types/mongoose": "^5.5.12",
"@types/morgan": "^1.7.36",
"@types/passport": "^1.0.0",
"@types/passport-discord": "^0.1.3",
"@types/passport-jwt": "^3.0.1",
"@types/ws": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^2.32.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.32.0",
"@typescript-eslint/parser": "^2.32.0",
"eslint": "^7.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prefer-arrow": "^1.2.1",
"tsc-watch": "^2.2.1",
"tslint": "^5.20.1",
"typescript": "^3.5.3"
}
}