-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.94 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
66
67
68
69
70
71
72
{
"name": "pdf-renderer",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"export": "next export",
"build-prod": "run-s clean build export",
"clean": "rimraf .next out",
"lint": "next lint",
"build-types": "tsc --noEmit --pretty",
"prepare": "run-s prepareInstall precommitInstall postcommitInstall commitmsgInstall",
"prepareInstall": "shx test -f ./.husky/_/husky.sh && echo Husky Installed!|| husky install && shx chmod ug+x .husky/* ",
"precommitInstall": "shx test -f ./.husky/pre-commit && npx husky set .husky/pre-commit \"npx lint-staged --concurrent false\" && shx chmod ug+x .husky/* || npx husky add .husky/pre-commit \"npx lint-staged --concurrent false\" && shx chmod ug+x .husky/*",
"postcommitInstall": "shx test -f ./.husky/post-commit && npx husky set .husky/post-commit \"git update-index -g\" && shx chmod ug+x .husky/* || npx husky add .husky/post-commit \"git update-index -g\" && shx chmod ug+x .husky/*",
"commitmsgInstall": "shx test -f ./.husky/commit-msg && npx husky set .husky/commit-msg \"npx --no -- commitlint --edit\" && shx chmod ug+x .husky/* || npx husky add .husky/commit-msg \"npx --no -- commitlint --edit\" && shx chmod ug+x .husky/*"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-syntax-jsx": "^7.16.0",
"@commitlint/config-conventional": "^15.0.0",
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"axios": "^0.24.0",
"date-fns": "^2.26.0",
"multer": "^1.4.3",
"next": "^12.1.0",
"next-seo": "^4.28.1",
"next-themes": "^0.0.15",
"nextjs-progressbar": "^0.0.13",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-switch": "^6.0.0",
"react-toastify": "^8.1.0",
"styled-jsx-plugin-postcss": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-syntax-jsx": "^7.16.0",
"@commitlint/cli": "^15.0.0",
"@next/bundle-analyzer": "^12.0.2",
"@types/multer": "^1.4.7",
"@types/react": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"autoprefixer": "^10.4.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-next": "^12.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unused-imports": "^1.1.5",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"tailwindcss": "^2.2.19",
"typescript": "^4.4.4"
},
"license": "MIT"
}