This repository has been archived by the owner on Oct 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
87 lines (87 loc) · 2.27 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
{
"name": "skynet-homescreen",
"version": "0.0.1",
"private": true,
"dependencies": {
"@fontsource/sora": "^4.5.5",
"@fontsource/source-code-pro": "^4.5.1",
"@fontsource/source-sans-pro": "^4.5.6",
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^14.3.0",
"classnames": "^2.3.1",
"clipboardy": "^2.3.0",
"css-what": "^6.0.1",
"dayjs": "^1.10.7",
"formik": "^2.2.9",
"ky": "^0.31.1",
"lodash-es": "^4.17.21",
"ms": "^2.1.3",
"nanoid": "^3.3.1",
"normalize.css": "^8.0.1",
"open-graph-scraper-lite": "^1.1.1",
"page-metadata-parser": "^1.1.4",
"pretty-bytes": "^5.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.2.0",
"react-router-dom": "^6.2.1",
"react-scripts": "4.0.3",
"react-toastify": "^8.1.0",
"react-use": "^17.3.2",
"skynet-js": "^4.3.0",
"spinkit": "^2.0.1",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.2",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.2",
"husky": "^7.0.4",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^13.0.3",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.23"
},
"scripts": {
"start": "yarn build:css && cross-env REACT_APP_PORTAL_URL=https://siasky.net react-scripts start",
"build": "cross-env NODE_ENV=production yarn build:css && react-scripts build",
"build:css": "postcss src/assets/tailwind.css -o src/assets/main.css",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{md,html,css,scss}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}