-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"develop": "start-server-and-test dev 3000 cypress:open"
},
"dependencies": {
"@babel/preset-typescript": "^7.16.7",
"@chakra-ui/icons": "^1.0.5",
"@chakra-ui/react": "^1.4.2",
"@chakra-ui/theme-tools": "1.1.2",
"@emotion/react": "11.1.5",
"@emotion/styled": "11.1.5",
"axios": "^0.26.1",
"chart.js": "^3.7.1",
"dotenv": "^16.0.0",
"formik": "^2.2.9",
"framer-motion": "^4.0.3",
"mongoose": "^6.3.1",
"next": "latest",
"react": "^17.0.2",
"react-chartjs-2": "^4.1.0",
"react-dom": "^17.0.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.12",
"@types/node": "^14.6.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"babel-plugin-istanbul": "^6.1.1",
"cypress": "^9.5.3",
"eslint": "^8.12.0",
"eslint-config-next": "^12.1.2",
"istanbul-lib-coverage": "^3.2.0",
"nyc": "^15.1.0",
"start-server-and-test": "^1.14.0",
"typescript": "4.3.2"
}
}