forked from CMU-17313Q/github-recitation-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 779 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 779 Bytes
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
{
"name": "recitation1",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"start": "tsc && node dist/src/app.js",
"lint": "eslint . --ext .ts",
"test": "jest",
"build": "rm -rf dist && tsc --build "
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.18.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^28.14.0",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
},
"dependencies": {
"express": "^4.17.1"
}
}