-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.38 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": " next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@svgr/webpack": "^5.5.0",
"axios": "^0.21.1",
"class-transformer": "^0.5.1",
"classnames": "^2.2.6",
"formik": "^2.2.6",
"next": "^10.2.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-query": "^3.13.5",
"reflect-metadata": "^0.1.13",
"remark": "^12.0.0",
"remark-html": "^12.0.0",
"tailwind": "^4.0.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.13.15",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/yup": "^0.29.11",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"autoprefixer": "^10.2.5",
"es6-shim": "^0.35.6",
"husky": "^4.2.1",
"lint-staged": "^10.2.2",
"postcss": "^8.2.9",
"prettier": "^2.1.2",
"tailwindcss": "^2.1.1",
"typescript": "^4.2.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}