-
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.41 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.41 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": "dashban",
"version": "0.1.0",
"description": "A modern, responsive Kanban board application with GitHub Actions integration",
"scripts": {
"start": "node server.js",
"lint": "eslint src/ tests/ server.js",
"test": "jest",
"test:watch": "jest --watch --silent",
"test:watch-coverage": "jest --watchAll --silent --coverage",
"test:coverage": "jest --coverage",
"test:silent-coverage": "jest --silent --coverage"
},
"keywords": [
"kanban",
"dashboard",
"github-actions",
"project-management"
],
"author": "Shawn Wilkinson",
"license": "MIT",
"engines": {
"node": ">=22"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.5.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"supertest": "^7.2.2"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.js",
"<rootDir>/server.js",
"!<rootDir>/node_modules/**",
"!<rootDir>/coverage/**"
],
"testMatch": [
"<rootDir>/tests/**/*.test.js"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
]
},
"dependencies": {
"@clerk/express": "^2.1.32",
"cors": "^2.8.5",
"dompurify": "^3.2.6",
"express": "^4.22.2",
"markdown-it": "^14.1.0"
}
}