This repository was archived by the owner on Jan 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.32 KB
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
{
"name": "webatool",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test dev http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test dev http://localhost:3000 cypress:headless",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@axe-core/puppeteer": "^4.4.4",
"mysql2": "^2.3.3",
"next": "12.3.1",
"puppeteer": "^18.0.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"recharts": "2.1.12",
"sequelize": "^6.23.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "18.7.21",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.12",
"cypress": "^10.8.0",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-testing-library": "^5.7.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"postcss": "^8.4.16",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.1.8",
"typescript": "4.8.3"
}
}