-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.87 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
{
"name": "pknu-notice",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0 --port 5173",
"build": "tsc && vite build",
"test": "jest",
"preview": "vite preview",
"postinstall": "husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"eslint --config ./.eslintrc --fix"
]
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@react-icons/all-files": "^4.1.0",
"axios": "^1.3.5",
"identity-obj-proxy": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-router-dom": "^6.9.0",
"react-slick": "^0.29.0"
},
"devDependencies": {
"@notionhq/client": "2.2.5",
"@testing-library/dom": "^8.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.0",
"@types/node": "18.15.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-icons": "^3.0.0",
"@types/react-slick": "^0.23.10",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitejs/plugin-react": "^3.1.0",
"dotenv-vault": "^1.19.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.0",
"msw": "^1.2.1",
"prettier": "^2.8.7",
"slick-carousel": "^1.8.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vite-plugin-pwa": "^0.16.4",
"vite-tsconfig-paths": "^4.0.7"
},
"types": "module"
}