-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.4 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
{
"name": "tomorelayer",
"version": "1.2.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.0.2",
"@material-ui/icons": "^4.0.1",
"@vutr/purser-core": "^2.1.6",
"@vutr/purser-ledger": "^1.2.10",
"@vutr/purser-software": "^1.2.8",
"@vutr/purser-trezor": "^1.2.6",
"chart.js": "^2.8.0",
"chartjs-plugin-datalabels": "^0.6.0",
"classnames": "^2.2.6",
"date-fns": "^1.30.1",
"downshift": "^3.2.12",
"ethers": "^4.0.27",
"formik": "^1.5.4",
"pouchdb": "^7.1.1",
"pouchdb-adapter-memory": "^7.1.1",
"pouchdb-find": "^7.1.1",
"pouchdb-quick-search": "^1.3.0",
"qs": "^6.7.0",
"react": "^16.8.5",
"react-app-rewire-hot-loader": "^2.0.1",
"react-app-rewired": "^2.1.3",
"react-dom": "^16.8.5",
"react-hot-loader": "^4.12.11",
"react-qr-svg": "^2.2.1",
"react-router-dom": "^5.0.1",
"react-scripts": "2.1.8",
"redux-zero": "^5.0.4",
"valid-url": "^1.0.9",
"wretch": "^1.5.4"
},
"scripts": {
"start": "react-app-rewired start",
"https": "HTTPS=true react-app-rewired start",
"docker": "docker-compose up -d",
"backend": "NODE_ENV=local node custom-script.js",
"backend:test": "NODE_ENV=test node custom-script.js",
"test": "react-app-rewired test --testPathIgnorePatterns .*\\.setup\\.js",
"test:debug": "react-app-rewired --inspect-brk test --runInBand --no-cache --testPathIgnorePatterns .*\\.setup\\.js",
"build": "react-app-rewired build",
"lint": "eslint --ext .jsx,.js src/",
"pylint": "pipenv run pylint backend/*",
"ctest": "embark test test/relayer-contract.test.js"
},
"proxy": "http://localhost:3003",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@testing-library/react": "^8.0.1",
"@testing-library/user-event": "^4.1.0",
"chai": "^4.2.0",
"dotenv": "^7.0.0",
"embark": "^4.1.1",
"exec-sh": "^0.3.2",
"faker": "^4.1.0",
"husky": "^3.0.0",
"jest-dom": "^3.5.0",
"kill-port": "^1.4.0",
"lint-staged": "^9.0.2",
"localtunnel": "^1.9.1",
"node-sass": "^4.12.0",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"request": "^2.88.0",
"sequelize": "^5.8.10",
"url-join": "^4.0.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint -- --max-warnings 0 --fix"
}
}
}