forked from nalenz/dd2482-demo-jstesting-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.22 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
{
"name": "dd2482-demo-jstesting-backend",
"version": "1.0.0",
"description": "Backend demo on the topic \"Testing frameworks for JavaScript in frontend and backend\" for the KTH course \"DD2482 Automated Software Testing and DevOps\"",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "npx rimraf dist; tsc",
"start": "npm run build && node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nalenz/dd2482-demo-jstesting-backend.git"
},
"keywords": [
"devops",
"testing",
"kth"
],
"author": "Julian Nalenz (@nalenz)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/nalenz/dd2482-demo-jstesting-backend/issues"
},
"homepage": "https://github.com/nalenz/dd2482-demo-jstesting-backend#readme",
"dependencies": {
"express": "^4.17.3",
"express-json-validator-middleware": "^2.2.1",
"json-schema": "^0.4.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3",
"uuid": "^8.3.2"
}
}