-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
118 lines (118 loc) · 3.38 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
{
"name": "moogli-frontend-extranet",
"version": "0.1.0",
"private": true,
"homepage": "https://business.moogli.io/",
"dependencies": {
"@craco/craco": "^6.4.3",
"@headlessui/react": "^1.5.0",
"@radix-ui/react-radio-group": "^0.1.5",
"@radix-ui/react-slider": "^0.1.4",
"@react-query-firebase/auth": "^0.3.4",
"clsx": "^1.1.1",
"downshift": "^6.1.7",
"firebase": "^9.6.10",
"jwt-decode": "^3.1.2",
"react": "^17.0.2",
"react-countdown": "^2.3.2",
"react-dom": "^17.0.2",
"react-lottie": "^1.2.3",
"react-query": "^3.34.19",
"react-router-dom": "^6.2.2",
"react-scripts": "5.0.0",
"tailwind-merge": "^1.2.0"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "craco eject",
"lint": "eslint \"**/*.{ts,tsx}\" \"*.config.js\"",
"lint:fix": "eslint --fix && yarn format",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"format": "prettier -w \"./**/*.{ts,tsx}\"",
"format:check": "prettier -c \"./**/*.{ts,tsx}\"",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"validate": "npm run lint && npm run typecheck"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/node-logger": "^6.4.19",
"@storybook/preset-create-react-app": "^4.0.1",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@tailwindcss/forms": "^0.5.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.26",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.12",
"@types/react-lottie": "^1.2.6",
"@types/tailwindcss": "^3.0.9",
"autoprefixer": "^10.4.2",
"eslint": "^8",
"eslint-config-kdnj": "^2.0.4",
"eslint-plugin-storybook": "^0.5.7",
"husky": "^7.0.0",
"lint-staged": "^12.3.4",
"postcss": "^8.4.7",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"storybook-preset-craco": "^0.0.6",
"tailwindcss": "^3.0.23",
"typescript": "4.6.2",
"webpack": "^5.70.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,}": [
"eslint --max-warnings=0",
"prettier -w"
],
"src/**/*.{json,css,scss,md}": [
"prettier -w"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"webpack": "^5",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.12"
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
}
}