-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.14 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": "xi.land",
"version": "1.1.0",
"engines": {
"node": "16.x"
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "NODE_ENV=production next start",
"lint": "eslint kit/** components/** pages/** -c .eslintrc.json --ext js,jsx,ts,tsx",
"lint-fix": "eslint kit/** components/** pages/** -c .eslintrc.json --fix --ext js,jsx,ts,tsx",
"prettier": "prettier --write components/**/*.{js,jsx,ts,tsx} kit/**/*.{js,jsx,ts,tsx} pages/**/*.{js,jsx,ts,tsx} store/**/*.{js,jsx,ts,tsx} texts/**/*.{js,jsx,ts,tsx} utils/**/*.{js,jsx,ts,tsx} worker/**/*.{js,jsx,ts,tsx}",
"prepare": "husky install"
},
"dependencies": {
"@emotion/cache": "^11.10.2",
"@emotion/css": "^11.9.0",
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.9.3",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@hookform/resolvers": "^2.8.2",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.1",
"@mui/styles": "^5.9.1",
"@mui/utils": "^5.9.1",
"@mui/x-data-grid": "^5.14.0",
"@xieffect/base.icons.eyeoff": "^0.0.13",
"@xieffect/base.icons.eyeon": "^0.0.13",
"babel-plugin-emotion": "^11.0.0",
"clsx": "^1.1.1",
"crypto-js": "^4.1.1",
"date-fns": "^2.28.0",
"framer-motion": "^5.3.1",
"mobx": "^6.3.6",
"mobx-react": "^7.2.1",
"moment": "^2.29.2",
"next": "^12.2.5",
"next-pwa": "^5.4.6",
"next-sitemap": "^1.6.203",
"notistack": "^2.0.3",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-custom-scrollbars-2": "^4.4.0",
"react-dom": "17.0.2",
"react-hook-form": "^7.35.0",
"react-just-parallax": "^3.1.14",
"react-moment": "^1.1.1",
"react-use": "^17.3.1",
"use-double-click": "^1.0.5",
"use-long-press": "^1.1.2",
"workbox-cacheable-response": "^6.5.3",
"workbox-expiration": "^6.5.3",
"workbox-routing": "^6.5.3",
"workbox-strategies": "^6.5.3",
"worker-loader": "^3.0.8",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.4",
"@babel/plugin-proposal-private-methods": "^7.14.5",
"@babel/plugin-proposal-private-property-in-object": "^7.15.4",
"@emotion/babel-plugin": "^11.9.2",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@types/crypto-js": "^4.1.1",
"@types/node": "^17.0.14",
"@types/react": "^17.0.38",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"babel-eslint": "^10.1.0",
"babel-plugin-inline-react-svg": "^2.0.1",
"eslint": "7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.1",
"prettier": "2.5.1",
"typescript": "^4.6.3",
"webpack": "^5.70.0"
}
}