-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
55
56
57
{
"name": "sparky",
"version": "2.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 ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/alephtwo/sparky.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alephtwo/sparky/issues"
},
"homepage": "https://github.com/alephtwo/sparky#readme",
"devDependencies": {
"@mui/system": "6.4.0",
"@stryker-mutator/core": "8.7.1",
"@stryker-mutator/vitest-runner": "8.7.1",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"@vitejs/plugin-react-swc": "3.7.2",
"eslint": "9.18.0",
"markdownlint": "0.37.4",
"markdownlint-cli": "0.43.0",
"prettier": "3.4.2",
"typescript": "5.7.3",
"typescript-eslint": "8.20.0",
"vite": "6.0.9",
"vitest": "3.0.2"
},
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@mui/icons-material": "6.4.0",
"@mui/material": "6.4.0",
"i18next": "24.2.1",
"i18next-http-backend": "3.0.1",
"immer": "10.1.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-i18next": "15.4.0"
}
}