-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "tragedy-looper-generator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "vite",
"test": "vitest run",
"coverage": "pnpm test -- --coverage",
"mutate": "stryker run",
"preview": "vite preview",
"build": "tsc && vite build",
"prettier": "prettier --check .",
"format": "prettier --write .",
"lint": "pnpm lint:ts && pnpm prettier && pnpm lint:md",
"lint:ts": "eslint .",
"lint:md": "markdownlint ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@axe-core/react": "4.10.1",
"@stryker-mutator/core": "8.7.1",
"@stryker-mutator/vitest-runner": "8.7.1",
"@types/lodash": "4.17.15",
"@types/node": "22.13.2",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@types/uuid": "10.0.0",
"@vitejs/plugin-react-swc": "3.8.0",
"eslint": "9.20.1",
"markdownlint": "0.37.4",
"markdownlint-cli": "0.44.0",
"prettier": "3.5.1",
"typescript": "5.7.3",
"typescript-eslint": "8.24.0",
"vite": "6.1.0",
"vitest": "3.0.5"
},
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@mui/icons-material": "6.4.4",
"@mui/material": "6.4.4",
"i18next": "24.2.2",
"i18next-http-backend": "3.0.2",
"immer": "10.1.1",
"lodash": "4.17.21",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-i18next": "15.4.0",
"uuid": "11.0.5"
}
}