-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.67 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
{
"name": "castlingclub",
"version": "0.1.0",
"license": "MIT",
"private": true,
"bin": {
"castlingclub": "./tools/server.js",
"castlingclub-migrate": "./tools/migrate.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "./tools/server.js",
"migrate": "./tools/migrate.js",
"test": "mocha dist/test-chess.js",
"fmt": "prettier --write . !.yarn",
"prepack": "yarn build"
},
"packageManager": "[email protected]+sha512.837566d24eec14ec0f5f1411adb544e892b3454255e61fdef8fd05f3429480102806bac7446bc9daff3896b01ae4b62d00096c7e989f1596f2af10b927532f39",
"type": "module",
"files": [
"./dist/**",
"./assets/css/*",
"./assets/img/*",
"./assets/ns/*",
"./assets/tmpl/*",
"./assets/*",
"./tools/migrate.js",
"./tools/server.js"
],
"dependencies": {
"@koa/router": "^12.0.0",
"@rdfjs/data-model": "^1.2.0",
"canvas": "^2.7.0",
"co-body": "^6.1.0",
"debug": "^4.3.1",
"dotenv": "^16.0.3",
"ejs": "^3.1.6",
"fetchache": "^0.1.5",
"http-errors": "^2.0.0",
"jsonld": "^8.1.0",
"koa": "^2.13.1",
"leven": "^4.0.0",
"parse5": "^7.1.1",
"pg": "^8.6.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@rdfjs/types": "^1.1.0",
"@types/chai": "^4.2.16",
"@types/co-body": "^6.1.0",
"@types/debug": "^4.1.5",
"@types/ejs": "^3.0.6",
"@types/http-errors": "^2.0.1",
"@types/koa": "^2.13.1",
"@types/koa__router": "^12.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^20.9.4",
"@types/pg": "^8.6.5",
"@types/uuid": "^9.0.3",
"chai": "^4.3.4",
"mocha": "^10.1.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}