-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.07 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
{
"name": "foxtrot-dashboard",
"version": "1.3.1",
"private": true,
"scripts": {
"dev": "next dev",
"ssr": "next build",
"start": "next start",
"build": "next build && next export",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"serverless": "npx [email protected]"
},
"lint-staged": {
"**/*.ts": [
"prettier --write --ignore-unknown",
"eslint --fix"
],
"**/*.tsx": [
"prettier --write --ignore-unknown",
"eslint --fix"
]
},
"dependencies": {
"@chakra-ui/icons": "^2.0.15",
"@chakra-ui/react": "^2.4.6",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@fontsource/montserrat": "^4.5.13",
"draftjs-to-html": "^0.9.1",
"framer-motion": "8.0.2",
"html-to-draftjs": "^1.5.0",
"html-to-image": "^1.11.3",
"html-to-react": "^1.5.0",
"immer": "^9.0.16",
"mutative": "^0.2.2",
"next": "13.1.1",
"notiflix": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.4",
"react-hook-form": "^7.43.2",
"react-icons": "^4.7.1",
"react-scripts": "5.0.1",
"zustand": "^4.1.5"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/draft-js": "^0.11.10",
"@types/draftjs-to-html": "^0.8.1",
"@types/html-to-draftjs": "^1.4.0",
"@types/node": "^18.11.18",
"@types/react-draft-wysiwyg": "^1.13.4",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"draft-js": "^0.11.7",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"prettier": "^2.8.1",
"react-draft-wysiwyg": "^1.15.0",
"react-svg-to-image": "^3.0.0",
"typescript": "4.9.5"
}
}