This repository was archived by the owner on Jan 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (75 loc) · 1.78 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
{
"name": "@matthewpi/cosmos-ui",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "cypress open",
"test:ci": "cypress run --headless"
},
"dependencies": {
"@hcaptcha/react-hcaptcha": "^0.3.5",
"debounce": "^1.2.1",
"easy-peasy": "^5.0.3",
"formik": "^2.2.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-fast-compare": "^3.2.0",
"react-router-dom": "^5.2.0",
"react-select": "^4.2.1",
"react-transition-group": "^4.4.1",
"styled-components": "^5.2.1",
"styled-components-breakpoint": "^3.0.0-preview.20",
"swr": "^0.5.3",
"yup": "^0.32.9"
},
"devDependencies": {
"@cypress/react": "^4.16.4",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.4.0",
"@types/debounce": "^1.2.0",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.34",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-router-dom": "^5.1.7",
"@types/react-select": "^4.0.13",
"@types/react-transition-group": "^4.4.1",
"@types/styled-components": "^5.1.8",
"@types/yup": "^0.29.11",
"@vitejs/plugin-react-refresh": "^1.3.1",
"autoprefixer": "^10.2.5",
"cypress": "^6.6.0",
"eslint": "^7.22.0",
"eslint-plugin-react": "^7.22.0",
"postcss": "^8.2.8",
"tailwindcss": "^2.0.3",
"twin.macro": "^2.3.0",
"typescript": "^4.2.3",
"vite": "^2.1.0",
"vite-plugin-babel-macros": "^1.0.5"
},
"engines": {
"node": ">=12"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"firefox esr",
"not dead"
],
"babelMacros": {
"twin": {
"preset": "styled-components",
"includeClassNames": true
},
"styledComponents": {
"pure": true,
"displayName": false,
"fileName": false
}
}
}