This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.18 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
{
"name": "mcbewrs",
"version": "0.0.0",
"description": "The world record history site for Minecraft: Bedrock Edition speedrunning",
"main": "server.js",
"private": "true",
"author": {
"name": "Thomas Voss",
"email": "thomasvoss@live.com",
"url": "https://mcbe.wtf"
},
"contributors": [
{
"name": "Luca Matei Pintillie",
"email": "lucafulger@gmail.com",
"url": "https://aninternettroll.xyz"
}
],
"bugs": "https://github.com/MCBE-Speedrunning/mcbewrs/issues",
"homepage": "https://wrs.mcbe.wtf",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://git.mcbe.wtf/MCBE-Speedrunning/mcbewrs"
},
"scripts": {
"postinstall": "bower install",
"start": "NODE_ENV=development nodemon ./dist/server.js",
"start-production": "NODE_ENV=production node ./dist/server.js",
"format": "prettier --write ./src/views/*.pug && ./src/utils/format.sh"
},
"dependencies": {
"bower": "^1.8.8",
"compression": "^1.7.4",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"express": "~4.16.1",
"express-minify": "^1.0.0",
"express-rate-limit": "^5.1.3",
"express-session": "^1.17.1",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"nodemon": "^2.0.4",
"pbkdf2-password": "^1.2.1",
"prettier": "^2.1.2",
"pug": "^3.0.1",
"sass": "^1.29.0",
"sqlite": "^4.0.19",
"sqlite3": "^5.0.0",
"typescript": "^4.1.3",
"xml": "^1.0.1",
"yaml": "^1.10.0"
},
"devDependencies": {
"@prettier/plugin-pug": "^1.10.1",
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.9",
"@types/csurf": "^1.11.0",
"@types/express": "^4.17.9",
"@types/express-minify": "^0.1.34",
"@types/express-rate-limit": "^5.1.0",
"@types/express-session": "^1.17.3",
"@types/http-errors": "^1.8.0",
"@types/js-yaml": "^3.12.5",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.19",
"@types/sass": "^1.16.0",
"@types/sqlite3": "^3.1.6",
"@types/xml": "^1.0.5",
"debug": "~2.6.9"
},
"prettier": {
"useTabs": true
},
"nodemonConfig": {
"verbose": true,
"ignore": [
"data/*",
"public/*",
".git/*",
".github/*",
"cache/*",
"docs/*",
"src/"
]
}
}