-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.61 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "med-translator",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/material": "^5.16.6",
"@testing-library/react": "^16.0.0",
"next": "^14.2.13",
"npm": "^11.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.2",
"react-icons": "^5.2.1"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "prettier --write . && next lint",
"lint:ci": "prettier --check . && next lint",
"test": "jest --watchAll",
"test:coverage": "jest --watchAll --coverage",
"test:ci": "jest --coverage --ci --silent",
"cypress": "cypress open",
"cypress:ci": "cypress run -- --browser electron"
},
"eslintConfig": {
"extends": [
"next/core-web-vitals"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/jest": "^29.5.13",
"@types/node": "^22.13.5",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"autoprefixer": "^10.4.20",
"cypress": "^13.15.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.14",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"postcss": "^8.4.47",
"prettier": "3.3.3",
"tailwindcss": "^3.4.13",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
}
}