This repository was archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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": "next-micro-frontend",
"version": "0.1.0",
"description": "a boilerplate to create microfrontend next js apps",
"private": "true",
"main": "index.js",
"scripts": {
"nodemonDev": "cd ./project/main && next dev",
"dev": "nodemon --config nodemon.json",
"build": "cd ./project/main && next build",
"start": "cd ./project/main && next start",
"lint": "cd ./project/main && next lint",
"cypress:run-all-tests": "cypress run",
"cypress:run-test": "cypress run --spec",
"cypress:run-project": "cypress run --project "
},
"author": "amirreza",
"license": "MIT",
"workspaces": [
"project/*"
],
"dependencies": {
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.8.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@fontsource/roboto": "^4.5.3",
"@mui/icons-material": "^5.4.4",
"@mui/material": "^5.4.4",
"axios": "^0.26.0",
"glob": "^7.2.0",
"next": "^12.1.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.27.1",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"swr": "^1.2.2"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@main/dashboard": "^0.1.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.3",
"babel-preset-react": "^6.24.1",
"cypress": "^9.5.1"
}
}