-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.84 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
{
"name": "folio-app",
"version": "1.0.0",
"private": true,
"engineStrict": true,
"engines": {
"node": "^16.0.0"
},
"bugs": {
"url": "https://github.com/pagevamp/folio-app/issues",
"email": "anit@outside.tech"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:next": "next lint",
"lint:css": "cross-env NODE_ENV=production stylelint \"**/*.{css,less,styl,scss,sass,tsx}\" --ignore-path .gitignore",
"format": "cross-env NODE_ENV=production prettier --write \"**/*.{js,jsx,ts,tsx}\" --ignore-path .gitignore",
"lint": "cross-env NODE_ENV=production eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path .gitignore --fix",
"postinstall": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,scss}": [
"npm run format",
"npm run lint"
]
},
"dependencies": {
"@hookform/resolvers": "^2.8.3",
"autoprefixer": "^10.4.0",
"axios": "^0.24.0",
"cross-env": "^7.0.3",
"next": "^12.0.4",
"next-pwa": "^5.4.0",
"next-svgr": "^0.0.2",
"postcss": "^8.4.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.20.2",
"recoil": "^0.5.2",
"sass": "^1.43.4",
"tailwindcss": "^2.2.19",
"yup": "^0.32.11"
},
"devDependencies": {
"@iconify/react": "^3.1.0",
"@next/bundle-analyzer": "^12.0.4",
"@types/node": "16.11.9",
"@types/react": "17.0.36",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "7",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.4.1",
"stylelint": "^14.1.0",
"stylelint-config-recommended": "^6.0.0",
"typescript": "4.5.2",
"windicss-webpack-plugin": "^1.5.8"
}
}