-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.55 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.55 KB
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
{
"name": "graycraft.me",
"version": "0.5.3-alpha",
"description": "Client and server logic of the graycraft.me website.",
"main": "index.mts",
"private": true,
"scripts": {
"node:watch": "node --env-file=.env --env-file=.env.local --env-file=.env.development --loader ts-node/esm --watch ./index.mts",
"prettier:check": "prettier -c .",
"prettier:write": "prettier -w .",
"preinstall": "./preinstall.sh",
"start": "node --env-file=.env --env-file=.env.local --env-file=.env.production --loader ts-node/esm ./index.mts",
"tsc:compile": "tsc",
"tsc:config": "tsc --showConfig"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graycraft/me.git"
},
"keywords": [
"graycraft",
"graycraft.me",
"site",
"web",
"website",
"www"
],
"author": "Defined Prototype <graycraft@pm.me> (https://graycraft.me/)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/graycraft/me/issues"
},
"homepage": "https://github.com/graycraft/me#readme",
"engines": {
"node": "22.11.0",
"npm": "10.9.0"
},
"dependencies": {
"canvas": "^2.11.2",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"ejs": "^3.1.10",
"express": "^4.21.1",
"http-errors": "~1.6.3",
"morgan": "~1.9.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"@types/requirejs": "^2.1.37",
"prettier": "3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}