-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 2.23 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
72
73
74
75
76
{
"name": "typescript-apps",
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@ant-design/icons": "^5.0.1",
"@chakra-icons/bootstrap": "^1.5.1",
"@chakra-icons/tabler-icons": "^1.24.0",
"@chakra-ui/icons": "^2.0.18",
"@chakra-ui/react": "^2.5.5",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fontsource/amatic-sc": "^4.5.9",
"@fontsource/dm-sans": "^4.5.9",
"@fontsource/exo": "^4.5.11",
"@fontsource/heebo": "^4.5.15",
"@fontsource/inter": "^4.5.15",
"@fontsource/jost": "^4.5.13",
"@fontsource/oswald": "^4.5.12",
"@fontsource/poppins": "^4.5.10",
"@fontsource/quicksand": "^4.5.12",
"@testing-library/user-event": "^14.4.3",
"axios": "^1.3.5",
"babel-jest": "^29.5.0",
"formik": "^2.2.9",
"framer-motion": "^10.11.2",
"next": "^13.2.4",
"npm-check-updates": "^16.10.7",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-query": "^3.39.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/preset-typescript": "^7.21.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"@types/moxios": "^0.4.15",
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-dom": "18.0.11",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"autoprefixer": "^10.4.14",
"eslint": "8.37.0",
"eslint-config-next": "13.2.4",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"jest-mock-extended": "^3.0.4",
"moxios": "^0.4.0",
"postcss": "^8.4.21",
"ts-jest": "^29.1.0",
"typescript": "^5.0.3"
},
"transformIgnorePatterns": [
"node_modules/(?!(<package-name>|<second-package-name>)/)"
],
"transform": {
"^.+\\.ts?$": "ts-jest",
"^.+\\.(js|jsx)$": "babel-jest"
}
}