generated from DistributedCollective/governance-dapp
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 4.24 KB
/
package.json
File metadata and controls
141 lines (141 loc) · 4.24 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "multisig-ui",
"version": "0.1.0",
"private": true,
"homepage": "https://distributedcollective.github.io/multisig-ui",
"dependencies": {
"@blueprintjs/core": "3.36.0",
"@blueprintjs/select": "3.15.0",
"@portis/web3": "2.0.0-beta.59",
"@reduxjs/toolkit": "1.3.2",
"@rsksmart/rsk3": "0.3.4",
"@testing-library/jest-dom": "5.1.1",
"@testing-library/react": "10.0.1",
"@types/fontfaceobserver": "0.0.6",
"@types/jest": "25.1.4",
"@types/node": "13.9.3",
"@types/react": "16.9.25",
"@types/react-dom": "16.9.3",
"@types/react-helmet": "5.0.15",
"@types/react-redux": "7.1.7",
"@types/react-router-dom": "5.1.3",
"@types/react-test-renderer": "16.9.2",
"@types/styled-components": "5.0.1",
"@types/testing-library__jest-dom": "5.0.2",
"@types/webpack-env": "1.15.1",
"@walletconnect/web3-provider": "1.3.1",
"chokidar-cli": "2.1.0",
"cross-env": "7.0.2",
"env-cmd": "10.1.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-prettier": "3.1.2",
"eth-block-tracker-es5": "2.3.2",
"fontfaceobserver": "2.1.0",
"husky": "4.2.3",
"i18next": "19.3.4",
"i18next-browser-languagedetector": "4.0.2",
"jest-styled-components": "7.0.2",
"lint-staged": "10.0.8",
"mathjs": "8.1.0",
"moment": "2.29.1",
"node-plop": "0.25.0",
"npm-run-all": "4.1.5",
"plop": "2.6.0",
"prettier": "2.0.1",
"react": "16.13.0",
"react-app-polyfill": "1.0.6",
"react-dom": "16.13.0",
"react-helmet-async": "1.0.4",
"react-i18next": "11.3.4",
"react-redux": "7.2.0",
"react-router-dom": "5.1.2",
"react-scripts": "4.0.0",
"react-test-renderer": "16.13.0",
"redux-injectors": "1.3.0",
"redux-saga": "1.1.3",
"serve": "11.3.0",
"shelljs": "0.8.3",
"styled-components": "5.0.1",
"stylelint": "13.2.1",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"tailwindcss": "1.9.6",
"ts-node": "8.8.2",
"typescript": "3.8.2",
"web3": "1.3.0",
"web3-utils": "1.3.0",
"web3modal": "1.9.1"
},
"scripts": {
"start": "npm-run-all build:tailwind --parallel watch:tailwind start:react",
"start:react": "react-scripts start",
"build": "react-scripts build",
"build:testnet": "env-cmd -f .env.testnet yarn build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"test:generators": "ts-node --project=./internals/ts-node.tsconfig.json ./internals/testing/test-generators.ts",
"start:prod": "yarn build && serve -s build",
"checkTs": "tsc --noEmit",
"eslint": "eslint --ext js,ts,tsx",
"lint": "yarn eslint -- src",
"lint:fix": "yarn eslint -- --fix src",
"lint:css": "stylelint src/**/*.css",
"generate": "cross-env TS_NODE_PROJECT='./internals/ts-node.tsconfig.json' plop --plopfile internals/generators/plopfile.ts",
"prettify": "prettier --write",
"build:tailwind": "tailwind build src/styles/tailwind.css -o src/styles/tailwind.output.css",
"watch:tailwind": "chokidar 'src/**/*.css' 'src/**/*.scss' --ignore src/styles/tailwind.output.css -c 'npm run build:tailwind'",
"prestart": "yarn build:tailwind",
"prebuild": "NODE_ENV=production run-s build:tailwind"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"npm": ">=6.4.1",
"node": ">=10.13.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"npm run eslint -- --fix"
],
"*.{md,json}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run checkTs && lint-staged"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*/*.d.ts",
"!src/**/*/Loadable.{js,jsx,ts,tsx}",
"!src/**/*/types.ts",
"!src/index.tsx",
"!src/serviceWorker.ts"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"devDependencies": {
"@types/mathjs": "6.0.7"
}
}