-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.03 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
{
"name": "rndphp",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "kill-port 8080 && next dev -p 8080",
"build": "next build",
"start": "next start",
"type-check": "tsc --project tsconfig.json --noEmit",
"lint": "eslint --quiet --fix --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"analyze": "cross-env ANALYZE=true npm run build"
},
"dependencies": {
"@accessible/tabs": "^3.0.0",
"@ant-design/react-slick": "^0.28.3",
"@babel/runtime": "7.14.6",
"axios": "^0.21.1",
"clsx": "^1.1.1",
"mobx": "^6.3.2",
"mobx-react": "^7.1.0",
"nanoid": "^3.1.20",
"next": "^11.0.1",
"normalize.css": "^8.0.1",
"react": "^17.0.1",
"react-dom": "17.0.1",
"react-hook-form": "^7.12.2",
"react-scroll-parallax": "^2.4.0",
"react-transition-group": "^4.4.2",
"slick-carousel": "^1.8.1",
"use-is-in-viewport": "^1.0.9"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-decorators": "^7.12.13",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@next/bundle-analyzer": "10.0.7",
"@types/gtag.js": "^0.0.4",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-plugin-inline-react-svg": "2.0.1",
"commitizen": "^4.2.3",
"cross-env": "7.0.3",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.0",
"husky": "4.3.8",
"kill-port": "^1.6.1",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"sass": "^1.32.6",
"typescript": "^4.1.4"
},
"engines": {
"node": ">= 14.0.0",
"npm": ">=5.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"./src/**/*.{ts,tsx}": [
"npm run lint",
"npm run format",
"bash -c tsc --noEmit"
],
"*.js": "eslint --cache --fix"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}