-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.47 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.47 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
60
{
"name": "survey-api",
"version": "1.0.0",
"description": "Simple API for a small survey app",
"main": "dist/app.js",
"scripts": {
"clean": "rm -rf dist/*",
"prebuild": "npm run clean",
"build": "npx tsc -b",
"dev": "npx tsc-watch --noClear -b --onSuccess \"node --env-file=.env dist/app.js\"",
"start": "node --env-file=.env dist/app.js",
"test": "npx jest --silent",
"test:detail": "npx jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SheepCreativeSoftware/survey-api.git"
},
"keywords": [
"api",
"survey"
],
"author": "Marina Egner",
"license": "MIT",
"bugs": {
"url": "https://github.com/SheepCreativeSoftware/survey-api/issues"
},
"homepage": "https://github.com/SheepCreativeSoftware/survey-api#readme",
"engines": {
"node": "^20.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.6.3",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.11.17",
"@types/supertest": "^6.0.2",
"dotenv": "^16.4.4",
"jest": "^29.7.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
},
"dependencies": {
"bcrypt": "^5.1.1",
"buntstift": "^5.0.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dompurify": "^3.0.8",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mariadb": "^3.2.3",
"zod": "^3.22.4"
}
}