-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.89 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "frontend-template",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"@types/react-modal": "3.13.1",
"clsx": "1.2.1",
"formik": "^2.2.9",
"next": "12.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-modal": "3.16.1",
"react-responsive": "9.0.0",
"react-toastify": "9.1.1",
"swiper": "8.4.4",
"yup": "0.32.11"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testRegex": "\\.spec\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleDirectories": [
"node_modules",
"src",
"typings"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.test.json"
}
}
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.18.6",
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@svgr/webpack": "6.3.1",
"@types/jest": "29.0.0",
"@types/node": "18.7.14",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"eslint": "8.23.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "27.0.1",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"prettier": "2.7.1",
"ts-jest": "28.0.8",
"typescript": "4.8.2"
}
}