-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
{
"name": "burdy-2-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "burdy dev",
"build": "next build && burdy build",
"start": "burdy start",
"export": "next export",
"lint": "next lint",
"db:make-migration": "burdy db migration:generate -n initial",
"db:init": "burdy db migration:run",
"db:import": "burdy import -p burdy-export.zip",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx}\" --ignore-path .gitignore"
},
"dependencies": {
"@burdy-cms/react-utils": "^1.1.1",
"@emotion/cache": "^11.5.0",
"@emotion/css": "^11.5.0",
"@emotion/react": "^11.5.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@hookform/resolvers": "^2.8.3",
"@mui/icons-material": "^5.0.5",
"@mui/material": "^5.0.6",
"@mui/styles": "^5.0.2",
"axios": "^0.24.0",
"burdy": "^2.1.0-beta.11",
"clsx": "^1.1.1",
"date-fns": "^2.25.0",
"deepcopy": "^2.1.0",
"dotenv": "^10.0.0",
"next": "^12.0.2",
"path-to-regexp": "^6.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.19.0",
"zod": "^3.11.6"
},
"devDependencies": {
"@types/react": "17.0.33",
"babel-plugin-import": "^1.13.3",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "7.32.0",
"eslint-config-next": "12.0.2",
"prettier": "^2.4.1",
"typescript": "4.4.4",
"webpack-bundle-analyzer": "^4.5.0"
}
}