This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
{
"name": "ui-builder-react",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"dev": "next dev -p 9000",
"build": "next build",
"export": "next export",
"start": "next start -p 9000",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test 'yarn start' :9000 'yarn cypress'",
"e2e:headless": "start-server-and-test 'yarn start' :9000 'yarn cypress:headless'",
"lint": "next lint"
},
"dependencies": {
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.13.0",
"@emotion/utils": "^1.4.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"@mui/material-nextjs": "^5.16.6",
"@mui/system": "^5.16.7",
"eslint-plugin-mui-path-imports": "^0.0.15",
"next": "^14.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@next/eslint-plugin-next": "^14.2.5",
"@types/node": "^22.3.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"cypress": "^13.13.3",
"eslint": "^8",
"eslint-config-next": "^14.2.5",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"start-server-and-test": "^2.0.5",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]"
}