This repository has been archived by the owner on Aug 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.49 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
{
"name": "dlx-ui",
"version": "0.0.1-alpha",
"homepage": "./",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "react-scripts test",
"test:ci": "CI=true react-scripts test --env=jsdom",
"coverage": "react-scripts test --env=jsdom --coverage",
"coverage:ci": "CI=true react-scripts test --env=jsdom --coverage && cat coverage/lcov.info",
"debug:chrome": "google-chrome --remote-debugging-port=9222",
"analyze": "source-map-explorer build/static/js/2.*.js"
},
"dependencies": {
"@date-io/core": "^1.3.6",
"@date-io/date-fns": "1.x",
"@material-ui/core": "4.10.0",
"@material-ui/icons": "4.9.1",
"@material-ui/pickers": "3.2.10",
"@walletconnect/client": "^1.0.5",
"@walletconnect/qrcode-modal": "^1.0.5",
"date-fns": "2.12.0",
"ethereum-blockies-base64": "1.0.2",
"ethers": "4.0.47",
"ipfs": "0.40.0",
"moment": "2.26.0",
"multicodec": "0.5.6",
"orbit-db": "0.23.1",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-stack-grid": "0.7.1",
"showdown": "1.9.1",
"slug": "3.3.0"
},
"devDependencies": {
"@types/node": "14.0.11",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"@types/showdown": "1.9.3",
"@types/slug": "0.9.1",
"eslint": "^5.16.0",
"husky": "^4.2.5",
"lint-staged": ">=10",
"organize-imports-cli": "0.7.0",
"prettier": "2.0.5",
"react-scripts": "3.0.1",
"source-map-explorer": "2.4.2",
"typescript": "3.4.5"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!./node_modules/",
"!src/App.tsx",
"!src/*.{ts,tsx}",
"!src/utils/**.ts"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"lint-staged": {
"./src/**/*.{ts,tsx}": [
"organize-imports-cli",
"prettier --write"
]
}
}