-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "JI23-DEV",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "run-p dev:*",
"dev:next": "next dev",
"dev:path": "pathpida --watch",
"build": "pathpida && next build",
"start": "next start",
"lint": "npm run lint:es && npm run lint:style",
"lint:fix": "npm run lint:es:fix && npm run lint:style:fix",
"lint:es": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:es:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"lint:style": "stylelint 'src/**/*.{css,scss}'",
"lint:style:fix": "stylelint --fix 'src/**/*.{css,scss}'",
"lint:conflict": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"postinstall": "typesync",
"now-build": "cp canvas_lib64/*so.1 node_modules/canvas/build/Release/ && yarn build",
"prepare": "husky install",
"lint-staged": "lint-staged",
"postbuild": "next-sitemap"
},
"dependencies": {
"@hookform/resolvers": "^2.8.2",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"axios": "0.23.0",
"canvas": "2.6.1",
"classnames": "^2.3.1",
"date-fns": "^2.25.0",
"googleapis": "^100.0.0",
"highlight.js": "^11.2.0",
"html-to-text": "^8.0.0",
"lodash": "^4.17.21",
"next": "^12.1.0",
"nprogress": "^0.2.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.17.4",
"react-share": "^4.4.0",
"react-stickynode": "^4.0.0",
"ress": "^4.0.0",
"sass": "^1.43.2",
"scroll-behavior-polyfill": "^2.0.13",
"typescript": "^4.4.4",
"typesync": "^0.8.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/classnames": "^2.3.1",
"@types/eslint": "^7.28.1",
"@types/gtag.js": "^0.0.7",
"@types/html-to-text": "^8.0.1",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.31",
"@types/nprogress": "^0.2.0",
"@types/prettier": "^2.4.1",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@types/react-stickynode": "^4.0.0",
"@types/sass": "^1.43.1",
"@types/stylelint": "^13.13.3",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"next-sitemap": "^1.6.184",
"npm-run-all": "^4.1.5",
"pathpida": "^0.17.0",
"prettier": "^2.4.1",
"prettier-plugin-organize-imports": "^2.3.4",
"stylelint": "^13.13.1",
"stylelint-config-recess-order": "^2.5.0",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.21.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
],
"src/**/*.{css,scss}": [
"stylelint --fix",
"git add"
]
}
}