forked from BearStudio/start-ui-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) Β· 3.96 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "start-ui",
"private": true,
"version": "1.0.0",
"description": "Opinionated UI starter with βοΈ React, β‘οΈ Chakra UI, βοΈ React Query & π Formiz β From the π» BearStudio Team",
"engines": {
"node": ">=14.17",
"npm": "please-use-yarn",
"yarn": ">=1.22"
},
"scripts": {
"prepare": "husky install",
"test": "cypress open",
"test:ci": "cypress run --component",
"dev": "yarn docs:build && next dev",
"build": "yarn docs:build && next build",
"start": "next start",
"pretty": "prettier -w .",
"lint": "eslint ./src --fix && tsc --noEmit",
"lint-staged": "eslint --cache --fix && tsc --noEmit",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook && mv ./storybook-static ./public/storybook",
"static:build": "yarn build && next export",
"static:serve": "yarn static:build && npx servor out app.html 5000",
"docs:build": "swagger-cli bundle src/mocks/openapi/openapi.yaml -t json --outfile public/open-api.json"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": "prettier --write",
"*.{ts,tsx,js,jsx}": "yarn lint-staged",
"src/mocks/**/*.{yaml,yml}": "yarn docs:build"
},
"dependencies": {
"@chakra-ui/react": "2.1.0",
"@chakra-ui/theme-tools": "2.0.0",
"@emotion/react": "11.8.2",
"@emotion/styled": "11.8.1",
"@faker-js/faker": "6.0.0",
"@fontsource/inter": "4.5.7",
"@formiz/core": "1.8.0",
"@formiz/validations": "1.0.0",
"axios": "0.26.1",
"cypress": "10.0.3",
"dayjs": "1.11.0",
"framer-motion": "6.2.8",
"i18next": "21.6.14",
"isomorphic-form-data": "2.0.0",
"lodash": "4.17.21",
"next": "12.1.6",
"react": "18.1.0",
"react-currency-input-field": "3.6.4",
"react-day-picker": "7.4.10",
"react-dom": "18.1.0",
"react-error-boundary": "3.1.4",
"react-i18next": "11.16.9",
"react-icons": "4.3.1",
"react-popper": "2.2.5",
"react-query": "3.39.0",
"react-router-dom": "6.2.2",
"react-select": "5.2.2",
"react-use-measure": "2.1.1",
"sharp": "0.30.5",
"swagger-cli": "4.0.4",
"swagger-ui-react": "4.11.1",
"zustand": "3.7.1"
},
"devDependencies": {
"@babel/core": "7.17.8",
"@babel/parser": "7.17.8",
"@next/eslint-plugin-next": "12.1.0",
"@storybook/addon-actions": "6.4.19",
"@storybook/addon-essentials": "6.4.19",
"@storybook/addon-links": "6.4.19",
"@storybook/react": "6.4.19",
"@storybook/theming": "6.4.19",
"@trivago/prettier-plugin-sort-imports": "3.2.0",
"@types/css-mediaquery": "0.1.1",
"@types/jest": "27.4.1",
"@types/node": "16.11.21",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.4",
"@types/swagger-ui-react": "4.1.1",
"@typescript-eslint/eslint-plugin": "5.16.0",
"@typescript-eslint/parser": "5.16.0",
"babel-eslint": "10.1.0",
"babel-jest": "27.5.1",
"babel-loader": "8.2.4",
"css-mediaquery": "0.1.2",
"eslint": "8.11.0",
"eslint-config-react-app": "7.0.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.3.7",
"miragejs": "0.1.43",
"prettier": "2.6.0",
"react-is": "18.1.0",
"storybook-dark-mode": "1.0.9",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bearstudio/start-ui.git"
},
"author": {
"name": "Ivan Dalmet",
"email": "[email protected]",
"url": "https://github.com/ivan-dalmet"
},
"contributors": [
{
"name": "Yoann Fleury",
"email": "[email protected]",
"url": "https://github.com/yoannfleurydev"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bearstudio/start-ui/issues"
},
"homepage": "https://github.com/bearstudio/start-ui#readme"
}