-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.6 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
58
59
{
"name": "@frogpond/ccc-server",
"description": "",
"keywords": [],
"author": "Frog Pond Labs, LLC",
"license": "AGPL-3.0-only",
"type": "module",
"prettier": {
"useTabs": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"semi": false
},
"scripts": {
"p": "npm run pretty -- --no-write --check",
"pretty": "prettier --write 'source/**/*.js'",
"lint": "eslint --cache --max-warnings=0 .",
"start": "node -r dotenv/config source/ccc-server/index.js",
"stolaf-college": "env INSTITUTION=stolaf-college npm start",
"carleton-college": "env INSTITUTION=carleton-college npm start",
"test": "./scripts/smoke-test.sh"
},
"dependencies": {
"@sentry/node": "^7.113.0",
"@sentry/profiling-node": "^7.113.0",
"@sentry/utils": "^7.113.0",
"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": "24.0.0",
"koa": "2.15.3",
"koa-bodyparser": "4.4.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.2.4",
"lodash": "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.1.3",
"zod": "^3.23.6"
},
"devDependencies": {
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"prettier": "3.2.5"
}
}