-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
{
"name": "next-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"pull-i18n": "lokalise2 file download --unzip-to ./i18n --format json --plural-format i18next --original-filenames=false --config ./i18n-config.yml "
},
"dependencies": {
"@babel/core": "^7.18.6",
"@emotion/cache": "^11.9.3",
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.9.3",
"@fontsource/roboto": "^4.5.7",
"@hookform/devtools": "^4.2.2",
"@hookform/resolvers": "^2.9.6",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.8.7",
"axios": "^0.27.2",
"localforage": "^1.10.0",
"luxon": "^2.4.0",
"next": "12.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.33.1",
"react-intl": "^6.0.5",
"react-query": "^3.39.1",
"react-toastify": "^9.0.5",
"valtio": "^1.6.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/luxon": "^2.3.2",
"@types/node": "18.0.3",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"babel-jest": "^28.1.2",
"eslint": "8.19.0",
"eslint-config-next": "12.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.1",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"typescript": "4.7.4"
}
}