-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
73 lines (73 loc) · 2.35 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": "lazuline",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-or-later",
"dependencies": {
"@1hive/connect-react": "^0.9.13",
"@1hive/radspec": "^2.0.0",
"@aragon/ui": "^1.9.2",
"@blossom-labs/connect-an-delay": "^0.3.1",
"@blossom-labs/connect-bl-tao-voting": "^0.3.0",
"@blossom-labs/connect-finance": "^0.1.0",
"@blossom-labs/connect-token-wrapper": "^0.1.0",
"@juggle/resize-observer": "^3.2.0",
"@safe-global/safe-apps-react-sdk": "^4.6.3",
"bn.js": "^4.11.8",
"clipboard-polyfill": "^3.0.1",
"date-fns": "2.0.0-alpha.22",
"dayjs": "^1.8.27",
"ethers": "^5.6.8",
"is-ipfs": "^6.0.2",
"prop-types": "^15.8.1",
"qrcode.react": "^0.8.0",
"react": ">=16.13.1",
"react-dom": "^16.3.1",
"react-error-boundary": "^3.1.4",
"react-is": "^17.0.2",
"react-linkify": "^0.2.2",
"react-router-dom": "^5.2.0",
"react-spring": "^8.0.1",
"react-use-measure": "^2.1.1",
"styled-components": ">=4.0.0",
"use-inside": "^0.2.0",
"use-wallet": "^0.13.6"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^26.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "5.5.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.0.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"prettier": "^1.8.2"
},
"scripts": {
"lint": "eslint ./src",
"test": "jest",
"start": "npm run sync-assets & parcel serve index.html -p 3000 --out-dir ./dist/",
"build": "rm -rf ./dist/ && npm run sync-assets && parcel build index.html --no-cache --out-dir ./dist/ --public-url \".\"",
"sync-assets": "copy-aragon-ui-assets -n aragon-ui ./dist && cp -pr ./public/. ./dist/"
},
"browserslist": [
">2%",
"last 1 edge versions",
"not ie > 0",
"not op_mini all"
]
}