-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.49 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "cuculus",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:proxy": "node proxy.js",
"analyze": "ANALYZE=true next build",
"analyze:win": "set ANALYZE=true&& next build",
"build": "next build",
"start": "next start",
"lint": "next lint -f stylish",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,scss,html}\"",
"test": "jest",
"prepare": "husky install",
"lint-staged": "lint-staged",
"storybook": "storybook dev -p 6006",
"test-storybook": "test-storybook",
"build-storybook": "storybook build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@cuculus/cuculus-api": "0.4.8",
"@ducanh2912/next-pwa": "10.2.7",
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@mui/icons-material": "5.15.20",
"@mui/lab": "5.0.0-alpha.170",
"@mui/material": "5.15.20",
"@mui/material-nextjs": "5.15.11",
"date-fns": "3.6.0",
"jwt-decode": "4.0.0",
"next": "14.2.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-easy-crop": "5.0.7",
"swr": "2.2.5",
"virtua": "0.31.0"
},
"devDependencies": {
"@fontsource/material-icons": "5.0.18",
"@fontsource/roboto": "5.0.13",
"@next/bundle-analyzer": "14.2.5",
"@storybook/addon-essentials": "8.1.6",
"@storybook/addon-interactions": "8.1.6",
"@storybook/addon-links": "8.1.6",
"@storybook/addon-onboarding": "8.1.6",
"@storybook/addon-styling": "1.3.7",
"@storybook/blocks": "8.1.6",
"@storybook/nextjs": "8.1.6",
"@storybook/react": "8.1.6",
"@storybook/test": "8.1.6",
"@storybook/test-runner": "0.19.1",
"@svgr/webpack": "8.1.0",
"@types/jest": "29.5.12",
"@types/node": "20.4.5",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "6.16.0",
"constructs": "10.3.0",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-storybook": "0.8.0",
"http-proxy-middleware": "3.0.0",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.2",
"prettier": "3.3.2",
"sst": "2.41.3",
"storybook": "8.1.6",
"ts-jest": "29.1.5",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"webpack": "5.93.0"
},
"volta": {
"node": "18.17.0",
"npm": "9.8.1"
}
}