-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.86 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.86 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
{
"name": "math",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint-staged": "lint-staged",
"prettier": "prettier ./src --check",
"test": "jest",
"test:watch": "jest --watch",
"cypress:open": "cypress open"
},
"dependencies": {
"classnames": "^2.5.1",
"next": "^14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-imask": "^7.6.1",
"react-intersection-observer": "^9.10.3",
"react-redux": "^9.1.2",
"sharp": "^0.33.4",
"swr": "^2.2.5"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.3",
"@react-spring/web": "^9.7.3",
"@reduxjs/toolkit": "^2.2.5",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-input-mask": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"cypress": "^13.11.0",
"eslint": "^8",
"eslint-config-next": "14.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.5",
"prettier": "^3.3.1",
"prop-types": "^15.8.1",
"sass": "^1.77.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-plugin-css-modules": "^5.1.0"
}
}