-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.66 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "godot-asset-library",
"version": "1.0.0",
"description": "An Open Source (AGPLv3) Godot Asset Library",
"main": "none",
"dependencies": {
"adm-zip": "^0.5.9",
"argon2": "^0.27.2",
"body-parser": "^1.19.1",
"compression": "^1.7.4",
"concurrently": "^7.0.0",
"cookie-parser": "^1.4.6",
"create-hmac": "^1.1.7",
"cron": "^1.8.2",
"csso": "^5.0.2",
"dompurify": "^2.4.0",
"eslint": "^7.18.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eta": "^1.12.3",
"express": "^4.17.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^6.2.0",
"fromnow": "^3.0.1",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"http-status-codes": "^2.2.0",
"jsdoc": "^3.6.10",
"jsdom": "^20.0.0",
"marked": "^4.0.19",
"mongodb": "^4.3.1",
"nanoid": "^3.2.0",
"node-fetch": "^2.6.7",
"nodemailer": "^6.7.2",
"nodemon": "^2.0.15",
"pubsub-js": "^1.9.4",
"request": "^2.88.2",
"sass": "^1.49.7",
"sitemap": "^7.1.1",
"standardx": "^7.0.0",
"striptags": "^3.2.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.5.5",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0",
"winston": "^3.4.0",
"winston-mongodb": "^5.0.7"
},
"devDependencies": {
"@overnightjs/core": "^1.7.6",
"@types/adm-zip": "^0.5.0",
"@types/apicache": "^1.6.1",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.2",
"@types/create-hmac": "^1.1.0",
"@types/cron": "^1.7.3",
"@types/dompurify": "^2.3.4",
"@types/express": "^4.17.13",
"@types/jsdom": "^20.0.0",
"@types/marked": "^4.0.6",
"@types/node": "^17.0.15",
"@types/node-fetch": "^2.6.2",
"@types/nodemailer": "^6.4.4",
"@types/pubsub-js": "^1.8.3",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.0"
},
"scripts": {
"devel": "mkdir -p dist/ && node src/BuildTaskRunner.js --watch",
"lint": "eslint . --ext .js,.ts ; exit 0",
"prod": "mkdir -p dist/ && node src/BuildTaskRunner.js --watch --production"
},
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"nodemonConfig": {
"ignore": [
"dist/public",
"src/public"
],
"delay": 0
}
}