-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.29 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.29 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "nextjs-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"prettify": "prettier --write src/**/*.{ts,tsx}",
"lint": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint src/**/*.{ts,tsx} --fix",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.12.3",
"@material-ui/data-grid": "^4.0.0-alpha.37",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "4.0.0-alpha.60",
"@material-ui/pickers": "^3.3.10",
"@material-ui/x-license": "^4.0.0-alpha.37",
"axios": "^0.21.1",
"date-fns": "^2.23.0",
"formik": "^2.2.9",
"lazysizes": "^5.3.2",
"mongodb": "^4.1.0",
"mongoose": "^5.13.5",
"next": "10.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-intl": "^5.20.7",
"styled-components": "^5.3.0",
"validator": "^13.6.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@types/mongoose": "^5.11.97",
"@types/react": "^17.0.16",
"@types/styled-components": "^5.1.12",
"@types/validator": "^13.6.3",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"autoprefixer": "^10.3.7",
"babel-plugin-import": "^1.13.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^1.13.2",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-better-styled-components": "^1.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-styled-components-a11y": "^0.0.34",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"postcss": "^8.3.9",
"prettier": "^2.3.2",
"tailwindcss": "^2.2.17",
"typescript": "^4.3.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}