This repository has been archived by the owner on Oct 2, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.01 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
{
"name": "ui",
"version": "0.0.1",
"private": true,
"scripts": {
"precommit": "yarn format",
"dev": "next dev",
"lint": "next lint",
"build": "next build",
"start": "next start",
"test": "react-scripts test",
"format": "prettier --write '**/*.{js,json,css,md}' '!package.json|yarn*|node_modules|build|coverage'"
},
"dependencies": {
"@bitcoin-design/bitcoin-icons-react": "^0.1.7",
"@react-stately/toggle": "^3.2.3",
"@runcitadel/sdk": "latest",
"@stitches/react": "^1.2.5",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"framer-motion": "^5.3.0",
"next": "^12.0.3",
"next-pwa": "^5.4.0",
"next-themes": "^0.0.15",
"next-transpile-modules": "^9.0.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-aria": "^3.10.0",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"swr": "^1.0.1",
"typescript": "^4.4.4",
"web-vitals": "^2.1.2"
},
"eslintConfig": {
"ignorePatterns": [
"build/*",
"**/public/*.js"
],
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off"
},
"env": {
"browser": true,
"node": true
}
},
"browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]"
}