-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 950 Bytes
/
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
{
"name": "kth-sandbox",
"version": "0.1.0",
"description": "Application to create sandbox courserooms in Canvas",
"main": "src/index.ts",
"dependencies": {
"@kth/canvas-api": "^5.0.0-beta.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"https": "^1.0.0",
"openid-client": "^5.6.5",
"selfsigned": "^2.4.1",
"skog": "^3.0.2",
"ts-node": "^10.9.2"
},
"scripts": {
"test": "jest",
"start": "ts-node --transpile-only src/index.ts",
"dev": "ts-node-dev --respawn src/indexDev.ts",
"format": "prettier --write ."
},
"author": "KTH Royal Institute of Technology",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jest": "^29.5.12",
"prettier": "3.2.5",
"ts-jest": "^29.1.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}