-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.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
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
{
"name": "@frogpond/ccc-server",
"description": "",
"keywords": [],
"author": "Frog Pond Labs, LLC",
"license": "AGPL-3.0-only",
"type": "module",
"prettier": {
"printWidth": 100,
"useTabs": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"semi": false
},
"ava": {
"typescript": {
"rewritePaths": {
"source/": "dist/source/"
},
"compile": false
}
},
"scripts": {
"build": "rm -rf ./dist ./.tsbuildinfo && tsc",
"build:watch": "tsc --watch",
"p": "npm run pretty -- --no-write --check",
"pretty": "prettier --write source scripts",
"lint": "eslint --cache --max-warnings=0 .",
"start": "node dist/source/ccc-server/index.js",
"start:watch": "node --watch dist/source/ccc-server/index.js",
"stolaf-college": "env INSTITUTION=stolaf-college npm start",
"carleton-college": "env INSTITUTION=carleton-college npm start",
"test:stolaf-college": "./scripts/smoke-test.sh stolaf-college",
"test:carleton-college": "./scripts/smoke-test.sh carleton-college",
"test": "ava",
"watch": "node ./scripts/watch.js"
},
"dependencies": {
"@sentry/node": "^8.0.0-rc.1",
"@sentry/profiling-node": "^8.4.0",
"@sentry/utils": "^8.0.0-rc.1",
"dotenv": "^16.4.5",
"get-urls": "12.1.0",
"html-entities": "2.5.2",
"ical.js": "^2.0.1",
"is-absolute-url": "4.0.1",
"jsdom": "25.0.0",
"koa": "2.15.3",
"koa-bodyparser": "4.4.1",
"koa-cash": "^4.1.1",
"koa-compress": "5.1.1",
"koa-conditional-get": "3.0.0",
"koa-ctx-cache-control": "1.0.1",
"koa-etag": "4.0.0",
"koa-json-error": "3.1.2",
"koa-logger": "3.2.1",
"koa-response-time": "2.1.0",
"koa-router": "12.0.1",
"ky": "^1.3.0",
"lodash-es": "^4.17.21",
"memoize": "10.0.0",
"moment": "2.30.1",
"moment-timezone": "0.5.45",
"normalize-url": "8.0.1",
"p-map": "7.0.2",
"turndown": "7.2.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@eslint/js": "^9.3.0",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/jsdom": "^21.1.6",
"@types/koa": "^2.15.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-cash": "^4.1.3",
"@types/koa-compress": "^4.0.6",
"@types/koa-conditional-get": "^2.0.3",
"@types/koa-etag": "^3.0.3",
"@types/koa-logger": "^3.1.5",
"@types/koa-response-time": "^2.1.5",
"@types/koa-router": "^7.4.8",
"@types/lodash-es": "^4.17.12",
"@types/turndown": "^5.0.4",
"ava": "^6.1.3",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.6.0",
"prettier": "^3.2.5",
"typed-query-selector": "^2.11.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.1"
}
}