-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.71 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
{
"name": "studio-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type:check": "tsc --project tsconfig.json",
"lint": "next lint",
"lint:check": "eslint './src/**/*.{ts,tsx}' --fix && prettier './src/**/*.{ts,tsx}' --check",
"lint:fix": "eslint './src/**/*.{ts,tsx}' --fix && prettier './src/**/*.{ts,tsx}' --write",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"yarn lint:fix"
]
},
"dependencies": {
"@elastic/react-search-ui": "^1.20.2",
"@elastic/react-search-ui-views": "^1.20.2",
"@elastic/search-ui-app-search-connector": "^1.20.2",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.2",
"@reduxjs/toolkit": "^1.9.5",
"amplify": "^0.0.11",
"aws-amplify": "^5.2.4",
"axios": "^1.4.0",
"crypto-js": "^4.1.1",
"formik": "^2.4.1",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"mustache": "^4.2.0",
"next": "^13.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-redux": "^8.0.7",
"remark-gfm": "^3.0.1",
"sharp": "^0.32.1",
"swiper": "^9.3.2",
"yup": "^1.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@storybook/addon-essentials": "^7.0.18",
"@storybook/addon-interactions": "^7.0.18",
"@storybook/addon-links": "^7.0.18",
"@storybook/addon-styling": "^1.0.8",
"@storybook/blocks": "^7.0.18",
"@storybook/nextjs": "^7.0.18",
"@storybook/react": "^7.0.18",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/crypto-js": "^4.1.1",
"@types/md5": "^2.3.2",
"@types/mustache": "^4.2.2",
"@types/node": "^20.2.5",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"@types/react-jsonschema-form": "^1.7.8",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-next": "^13.4.4",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-perf": "^3.3.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"storybook": "^7.0.18",
"typescript": "^5.0.4"
}
}