-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.04 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
{
"name": "next-js-fe-admin-template",
"version": "1.0.0",
"private": true,
"author": "Patrik Duch",
"scripts": {
"dev": "cross-env API_HOST=http://localhost:3000 next dev",
"build": "cross-env API_HOST=https://nextjs-fe-admin.azurewebsites.net next build",
"start": "next start -p 80",
"lint": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"test": "jest --env=jsdom --watchAll"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/data-grid": "*",
"@material-ui/icons": "^4.11.2",
"axios": "^0.21.1",
"clsx": "^1.1.1",
"formik": "^2.2.6",
"js-cookie": "^2.2.1",
"next": "^10.0.0",
"next-i18next": "^7.0.1",
"next-redux-wrapper": "^6.0.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-redux": "^7.2.3",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"styled-components": "^5.2.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"babel-plugin-module-resolver": "^4.1.0",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^26.6.3",
"jest-enzyme": "^7.1.2",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
}
}