forked from simonyiszk/simonyi-szakmai-het-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.02 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
{
"private": true,
"scripts": {
"build": "next build",
"build:analyze": "cross-env ANALYZE=true npm run build",
"clean": "git clean -fdx -e node_modules",
"dev": "next dev",
"fix": "run-s fix:*",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext .js,.ts,.tsx --ignore-path ./.gitignore ./",
"lint:prettier": "prettier --check --ignore-path ./.gitignore ./",
"lint:typescript": "tsc",
"start": "next start",
"export": "next build && next export"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{js,ts,tsx}": "eslint --fix"
},
"dependencies": {
"@next/bundle-analyzer": "^9.5.5",
"@react-firebase/database": "^0.3.11",
"@types/react-select": "^3.0.22",
"@types/react-toast-notifications": "^2.4.0",
"babel-plugin-optimize-clsx": "^2.6.1",
"clsx": "^1.1.1",
"firebase": "^7.24.0",
"next": "^9.5.5",
"next-compose-plugins": "^2.2.0",
"next-images": "^1.6.2",
"node-fetch": "^2.6.1",
"postcss-baseurl": "0.0.2",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-hook-form": "^6.9.3",
"react-select": "^3.1.0",
"react-toast-notifications": "^2.4.0",
"tailwindcss": "^1.9.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "^9.5.5",
"@types/node": "^14.11.10",
"@types/react": "^16.9.53",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"eslint-config-airbnb-typescript": "^11.4.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-simple-import-sort": "^5.0.3",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
}
}