-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.01 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "client-web-api-sandbox",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --cache \"src/**/*\"",
"lint:fix": "eslint --cache \"src/**/*\" --fix",
"format": "prettier --cache --check \"./src\"",
"format:fix": "prettier --cache --write \"./src\"",
"markup": "markuplint \"src/**/*.{jsx,tsx,html}\"",
"markup:fix": "markuplint \"src/**/*.{jsx,tsx,html}\" --fix",
"check": "npm run lint && npm run format && npm run markup",
"check:fix": "npm run lint:fix && npm run format:fix && npm run markup:fix",
"prepare": "husky"
},
"dependencies": {
"@dnd-kit/core": "^6.2.0",
"@dnd-kit/sortable": "^9.0.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.3.1",
"@mui/material": "^6.4.1",
"jotai": "^2.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tone": "^15.0.4"
},
"devDependencies": {
"@markuplint/jsx-parser": "^4.7.13",
"@markuplint/react-spec": "^4.5.14",
"@types/dom-mediacapture-transform": "^0.1.9",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/parser": "^8.19.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^8.0.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"markuplint": "^4.11.4",
"prettier": "^3.3.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.18.1",
"vite": "^5.4.14"
},
"lint-staged": {
"*.{jsx,tsx,html}": [
"markuplint"
],
"src/**/*": [
"eslint --cache",
"prettier --check"
]
}
}