-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.79 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
{
"name": "uwpcommunity.github.io",
"version": "1.0.0",
"description": "Backend for the UWP Community website",
"main": "./build/index.js",
"engines": {
"node": "16.19.1"
},
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"@types/bluebird": "^3.5.38",
"@types/express": "^4.17.2",
"@types/faker": "^4.1.7",
"@types/glob": "^7.1.1",
"@types/node": "^12.12.7",
"@types/pg": "^7.11.2",
"@types/request": "^2.48.3",
"@types/swagger-jsdoc": "^3.0.2",
"@types/validator": "^10.11.3",
"@types/websocket": "1.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"discord.js": "^14.7.1",
"dotenv": "^8.2.0",
"ejs": "^2.7.2",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"faker": "^4.1.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"js-yaml": "^3.13.1",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.1",
"pg": "^7.12.1",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"sequelize": "^5.21.5",
"sequelize-typescript": "^1.1.0",
"sqlite3": "^4.1.0",
"swagger-ui-express": "^4.3.0",
"websocket": "^1.0.30"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/node-fetch": "^2.5.3",
"typescript": "^4.9.5"
},
"scripts": {
"start": "npm run build && node -r dotenv/config ./build/index.js",
"build": "npm run prebuild && tsc",
"prebuild": "node tasks/cleanup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UWPCommunity/uwpcommunity.github.io.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/UWPCommunity/uwpcommunity.github.io/issues"
},
"homepage": "https://github.com/UWPCommunity/uwpcommunity.github.io/tree/deploy/backend"
}