-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (93 loc) · 2.68 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
{
"name": "urbit-dashboard",
"version": "0.1.0",
"author": "dcSpark",
"license": "MIT",
"description": "Urbit Web App which allows you to easily perform administrative tasks on your Urbit ship.",
"bugs": {
"url": "https://github.com/dcSpark/urbit-dashboard/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcSpark/urbit-dashboard.git"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && gulp licenses",
"test": "react-scripts test",
"eject": "react-scripts eject",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm start"
},
"dependencies": {
"@emotion/react": "11.1.5",
"@emotion/styled": "11.1.5",
"@fortawesome/fontawesome-free": "5.15.2",
"@material-ui/core": "4.11.3",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "4.0.0-alpha.57",
"@tlon/sigil-js": "^1.4.4",
"chart.js": "2.9.4",
"node-sass": "^6.0.1",
"nouislider": "14.6.3",
"prop-types": "15.7.2",
"react": "17.0.1",
"react-chartjs-2": "2.11.1",
"react-copy-to-clipboard": "5.0.3",
"react-datetime": "3.0.4",
"react-dom": "17.0.1",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.2",
"@dcspark/uv-core": "^0.3.0",
"zustand": "^3.5.10",
"follow-redirects": ">=1.14.7",
"node-forge": ">=1.0.0",
"nth-check": ">=2.0.1",
"immer": ">=9.0.6",
"postcss": ">=8.2.13"
},
"eslintConfig": {
"extends": [
"react-app"
],
"plugins": [
"unused-imports"
],
"rules": {
"no-unused-vars": "off",
"unused-imports/no-unused-vars": [
"warn",
{
"vars": "all",
"varsIgnorePattern": "^_",
"args": "after-used",
"argsIgnorePattern": "^_"
}
]
}
},
"optionalDependencies": {
"typescript": "4.1.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint": "7.20.0",
"eslint-plugin-unused-imports": "1.1.0",
"gulp": "4.0.2",
"gulp-append-prepend": "1.0.8"
},
"engines": {
"node": "14.17.6",
"npm": "6.14.15"
}
}