-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
{
"name": "dce-expresskit",
"version": "4.0.0",
"description": "Shared functions, helpers, and tools for Harvard DCE Express-based servers",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc --project ./tsconfig.json",
"gen-cross-server-secret": "npx tsx genEncodedSecret.ts",
"gen-cross-server-salt": "npx tsx genSalt.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harvard-edtech/dce-expresskit.git"
},
"keywords": [
"Express",
"Harvard",
"DCE",
"Toolkit"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"bootstrap": "^5.3.3",
"dce-reactkit": "^4.0.0-beta.2",
"react": "^19.0.0"
},
"peerDependencies": {
"caccl": "^x.x.x",
"dce-mango": "^x.x.x",
"express": "^4.21.2",
"express-session": "^1.18.1"
},
"author": "Gabe Abrams <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/harvard-edtech/dce-expresskit/issues"
},
"homepage": "https://github.com/harvard-edtech/dce-expresskit#readme",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.1",
"@types/node": "^22.13.10",
"@types/oauth-signature": "^1.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"typescript": "^5.8.2"
}
}