This repository has been archived by the owner on Jul 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.76 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
{
"name": "o2.auth",
"version": "0.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"build": "rm -rf __quercia && quercia build -m=production",
"dev": "rm -rf __quercia && quercia watch"
},
"dependencies": {
"@emotion/css": "^11.0.0-next.12",
"@emotion/react": "^11.0.0-next.12",
"@emotion/server": "^11.0.0-next.12",
"@rebass/forms": "^4.0.6",
"parse-diff": "^0.7.0",
"pretty-bytes": "^5.3.0",
"prismjs": "^1.21.0",
"promisify-file-reader": "^4.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-form": "^5.3.1",
"rebass": "^4.0.7",
"tinydate": "^1.2.0",
"use-onclickoutside": "^0.3.1",
"use-prefers-theme": "^0.1.2"
},
"devDependencies": {
"@quercia/cli": "0.5.3",
"@styled-system/theme-get": "^5.1.2",
"@types/node": "^13.11.1",
"@types/prismjs": "^1.16.0",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/rebass": "^4.0.6",
"@types/rebass__forms": "^4.0.2",
"bundlewatch": "^0.2.6",
"file-loader": "^6.0.0",
"preact": "^10.4.0",
"type-fest": "^0.14.0",
"typescript": "^3.8.3"
},
"resolutions": {
"@emotion/react": "^11.0.0-next.12",
"@emotion/styled": "^11.0.0-next.12"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"arrowParens": "avoid",
"trailingComma": "none",
"proseWrap": "always",
"quoteProps": "consistent"
},
"bundlewatch": {
"files": [
{
"path": "__quercia/client/*.js",
"maxSize": "20kB"
},
{
"path": "__quercia/client/pages/**/*.js",
"maxSize": "9kB"
}
]
},
"volta": {
"node": "12.16.2",
"yarn": "1.22.4"
}
}