-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.13 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
{
"name": "kanban",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --env=jsdom",
"test:watch": "jest --env=jsdom --watchAll",
"refactor": "jest && npm run build && git commit --amend --no-edit -a || git reset --hard",
"typecheck": "tsc --noEmit",
"dev": "vite",
"build": "vite build",
"test:e2e": "playwright test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-typescript": "^7.28.5",
"@playwright/test": "^1.58.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@vitejs/plugin-legacy": "^8.0.0",
"babel-jest": "^30.3.0",
"jest": "^24.8.0",
"node-notifier": "^10.0.1",
"open": "^11.0.0",
"serve": "^14.2.6",
"typescript": "^5.9.3",
"vite": "^8.0.2"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/e2e/"
],
"transform": {
"^.+\\.ts$": "babel-jest"
}
},
"dependencies": {
"bootstrap": "^5.3.8",
"chart.js": "^4.5.1",
"pubsub-js": "^1.9.5"
}
}