forked from HugoPerard/standup-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.58 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
{
"name": "start-ui",
"private": true,
"version": "1.0.0",
"description": "⚠️ Work in progress repository",
"scripts": {
"postinstall": "husky install",
"test": "jest --roots src --watch",
"dev": "next dev",
"build": "next build",
"start": "next start",
"pretty": "prettier -w .",
"lint": "eslint ./src --fix",
"storybook": "start-storybook -p 6006 -s ./public",
"storybook:build": "build-storybook -s ./public && 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}": "eslint --cache --fix"
},
"dependencies": {
"@chakra-ui/react": "1.6.2",
"@chakra-ui/theme-tools": "1.1.7",
"@emotion/react": "11.4.0",
"@emotion/styled": "11.3.0",
"@formiz/core": "1.0.3",
"@formiz/validations": "1.0.0",
"axios": "0.21.1",
"dayjs": "1.10.4",
"faker": "5.5.3",
"firebase": "8.6.7",
"fireworks-js": "1.2.0",
"framer-motion": "4.1.17",
"history": "5.0.0",
"i18next": "20.3.0",
"next": "10.2.0",
"react": "17.0.2",
"react-beautiful-dnd": "13.1.0",
"react-currency-input-field": "3.4.1",
"react-custom-scrollbars": "4.2.1",
"react-day-picker": "7.4.10",
"react-dom": "17.0.2",
"react-error-boundary": "3.1.3",
"react-i18next": "11.9.0",
"react-icons": "4.2.0",
"react-markdown": "7.0.1",
"react-query": "3.16.0",
"react-router-dom": "5.2.0",
"react-select": "4.3.1",
"react-timer-hook": "3.0.3",
"swagger-cli": "4.0.4",
"swagger-ui-react": "3.49.0"
},
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/parser": "7.14.3",
"@babel/plugin-syntax-object-rest-spread": "7.8.3",
"@storybook/addon-actions": "6.2.9",
"@storybook/addon-essentials": "6.2.9",
"@storybook/addon-links": "6.2.9",
"@storybook/react": "6.2.9",
"@storybook/theming": "6.2.9",
"@testing-library/jest-dom": "5.12.0",
"@testing-library/react": "11.2.7",
"@testing-library/react-hooks": "7.0.0",
"@testing-library/user-event": "13.1.9",
"@trivago/prettier-plugin-sort-imports": "2.0.2",
"@types/jest": "26.0.23",
"@types/node": "15.6.1",
"@types/react-select": "4.0.15",
"@typescript-eslint/eslint-plugin": "4.25.0",
"@typescript-eslint/parser": "4.25.0",
"babel-eslint": "10.1.0",
"babel-jest": "27.0.0",
"babel-loader": "8.2.2",
"babel-plugin-polyfill-corejs2": "0.2.1",
"babel-plugin-polyfill-regenerator": "0.2.1",
"css-mediaquery": "0.1.2",
"eslint": "7.27.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.7.2",
"eslint-plugin-import": "2.23.3",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "6.0.0",
"jest": "27.0.0",
"lint-staged": "11.0.0",
"miragejs": "0.1.41",
"prettier": "2.2.1",
"react-is": "17.0.2",
"tsconfig-paths-webpack-plugin": "3.5.1",
"typescript": "4.2.4"
},
"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"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bearstudio/start-ui/issues"
},
"homepage": "https://github.com/bearstudio/start-ui#readme"
}