-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.71 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.71 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "flock-eco-workday",
"main": "index.js",
"type": "module",
"scripts": {
"clean": "npx --yes rimraf ./workday-*/src/main/react/wirespec",
"format": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"start": "npm run start:local",
"start:local": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest",
"test:tdd": "nodemon -w ./workday-application/src -e js --exec npm test",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"generate": "wirespec compile -i./workday-application/src/main/wirespec -o./workday-application/src/main/react/wirespec -l TypeScript",
"prepare": "husky install && npm run generate"
},
"author": "",
"license": "ISC",
"dependencies": {
"@date-io/dayjs": "^2.17.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^7.0.0",
"@mui/material": "^7.0.0",
"@mui/x-date-pickers": "^7.0.0",
"dayjs": "^1.11.1",
"formik": "^2.2.6",
"formik-mui": "^5.0.0-alpha.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-dropzone": "^14.3.8",
"react-error-boundary": "^6.0.0",
"react-router-dom": "^5.3.4",
"recharts": "^2.0.3",
"sass": "^1.69.4",
"styled-components": "^6.1.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@flock/wirespec": "0.17.8",
"@fontsource/material-icons": "^5.0.7",
"@fontsource/roboto": "^5.0.8",
"@playwright/test": "^1.53.1",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/react-router": "^5.1.20",
"@vitejs/plugin-react": "^4.2.1",
"clsx": "^1.1.1",
"husky": "8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "13.1.2",
"nodemon": "^2.0.2",
"playwright": "^1.52.0",
"react-test-renderer": "^19.0.0",
"ts-jest": "^29.4.5",
"typescript": "^5.2.2",
"vite": "^5.0.10"
},
"overrides": {
"react-is": "^19.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css}": [
"biome check --write --no-errors-on-unmatched"
]
},
"homepage": "https://github.com/flock-community/flock-eco-workday#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/flock-community/flock-eco-workday.git"
},
"bugs": {
"url": "https://github.com/flock-community/flock-eco-workday/issues"
}
}