-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2.14 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
{
"name": "brightid",
"homepage": "https://ethereum.brightid.org",
"version": "1.8.0",
"main": "./dist/index.js",
"dependencies": {
"@babel/core": "^7.11.6",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@types/jest": "24.0.20",
"@types/node": "12.11.7",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"@types/reactstrap": "^8.4.2",
"@walletconnect/web3-provider": "^1.0.0-beta.47",
"authereum": "0.0.4-beta.133",
"clean": "^4.0.2",
"ethereumjs-abi": "^0.6.8",
"ethjs-ens": "^2.0.1",
"ethjs-provider-http": "^0.1.6",
"gh-pages": "^2.2.0",
"jazzicon": "^1.5.0",
"js-sha3": "^0.8.0",
"moment": "2.24.0",
"node-sass": "4.14.1",
"nouislider": "14.0.2",
"qrcode.react": "^0.9.3",
"react": "^16.13.1",
"react-bootstrap-switch": "15.5.3",
"react-datetime": "2.16.3",
"react-dom": "^16.13.1",
"react-router": "5.0.1",
"react-router-dom": "5.0.1",
"react-scripts": "^3.4.1",
"typescript": "^3.6.4",
"web3": "^1.2.9"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts --max_old_space_size=4096 build",
"compile": "tsc .",
"test": "react-scripts test",
"eject": "react-scripts eject",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm start",
"compile-sass": "node-sass src/assets/scss/bright-ethereum.scss src/assets/css/bright-ethereum.css",
"minify-sass": "node-sass src/assets/scss/bright-ethereum.scss src/assets/css/bright-ethereum.min.css --output-style compressed",
"map-sass": "node-sass src/assets/scss/bright-ethereum.scss src/assets/css/bright-ethereum.css --source-map true",
"predeploy": "npm run build",
"deploy": "gh-pages -d build -b staging --add"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.10.4"
}
}