forked from TogetherCrew/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.88 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
{
"name": "rndao",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node ./lib/index.js",
"postbuild": "npm run copy-files",
"copy-files": "copyfiles -u 1 src/**/*.yml lib",
"dev": "env-cmd -f ./src/config/dev.env nodemon ./src/index.ts",
"test": "env-cmd -f ./src/config/test.env jest --detectOpenHandles"
},
"author": "",
"license": "ISC",
"dependencies": {
"@notionhq/client": "^2.2.3",
"babel-jest": "^29.3.1",
"compression": "^1.7.4",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"discord.js": "^14.7.1",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"helmet": "^6.0.1",
"http-status": "^1.6.2",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.40",
"mongodb": "^4.12.1",
"mongoose": "^6.7.5",
"node-fetch": "^2.6.7",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.6.0",
"tc_dbcomm": "^1.0.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^18.11.10",
"@types/node-fetch": "^2.6.2",
"@types/passport": "^1.0.11",
"@types/passport-jwt": "^3.0.7",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"env-cmd": "^10.1.0",
"eslint": "^8.28.0",
"jest": "^29.3.1",
"node-mocks-http": "^1.12.1",
"nodemon": "^2.0.20",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}