-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.94 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
{
"name": "shifumi",
"private": true,
"version": "1.4.1",
"type": "module",
"contributors": [
"bouveret.felix@gmail.com"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives && npx stylelint '**/*.module.scss'",
"test:unit": "vitest"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --ext '.ts,.tsx' --fix"
],
"*.module.scss": [
"npx stylelint"
]
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fontsource/inter": "^5.0.16",
"@mui/icons-material": "^5.15.4",
"@mui/material": "^5.15.4",
"@types/react-beautiful-dnd": "^13.1.8",
"node-sass": "^9.0.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-confetti-explosion": "^2.1.2",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.2",
"tween-functions": "^1.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.2",
"@testing-library/react": "^14.1.2",
"@types/node": "^20.11.7",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/tween-functions": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.55.0",
"eslint-plugin-pretty-imports": "^1.3.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^8.0.0",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.0",
"sass": "^1.69.7",
"semantic-release": "^22.0.12",
"stylelint": "^16.2.0",
"stylelint-config-clean-order": "^5.4.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"typescript": "^5.2.2",
"vitest": "^1.2.2"
}
}