-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.88 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
86
87
88
89
90
91
92
93
{
"name": "SpotX",
"private": true,
"engines": {
"node": ">=10.13.0",
"yarn": "^1.10.1"
},
"scripts": {
"start": "yarn rm-mjs && react-static start",
"stage": "react-static build --staging",
"build": "yarn rm-mjs && react-static build",
"bundle": "react-static bundle",
"export": "react-static export",
"test:epics": "jest --config jest/jest.config.js --coverage",
"lint": "npx tslint -c tslint.json --project .",
"rm-mjs": "find . -type f | grep -e 'mjs$' | xargs rm"
},
"dependencies": {
"@babel/plugin-proposal-pipeline-operator": "^7.12.1",
"@cennznet/api": "^1.5.0-alpha.6",
"@cennznet/types": "^1.5.0-alpha.6",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@polkadot/extension-dapp": "^0.36.1",
"@polkadot/keyring": "5.9.2",
"@polkadot/react-identicon": "^0.61.2-7",
"@polkadot/ts": "^0.3.59",
"@reach/router": "^1.2.1",
"@types/bn.js": "^4.11.5",
"@types/redux-actions": "^2.6.1",
"@types/styled-components": "^4.1.16",
"bignumber.js": "^9.0.0",
"centrality-react-core": "^0.3.3",
"connected-react-router": "^6.4.0",
"core-js": "3",
"file-loader": "^6.2.0",
"file-saver": "^2.0.0",
"immer": "^9.0.6",
"open-sans-fontface": "^1.4.0",
"ramda": "^0.26.1",
"react": "^16.14",
"react-dom": "^16.8.2",
"react-localize-redux": "^3.5.3",
"react-modal": "^3.8.1",
"react-redux": "^7.0.3",
"react-slider": "^1.1.2",
"react-spinners": "^0.10.6",
"react-static": "7.5.3",
"react-static-plugin-reach-router": "7.5.3",
"react-static-plugin-sass": "7.3.0",
"react-static-plugin-sitemap": "7.5.3",
"react-static-plugin-styled-components": "7.5.0",
"react-static-plugin-typescript": "7.5.3",
"recompose": "^0.30.0",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-observable": "^1.1.0",
"reselect": "^4.0.0",
"rxjs": "^6.5.1",
"semantic-ui-react": "^2.0.3",
"styled-components": "^4.2.1",
"styled-props": "1.1.2"
},
"resolutions": {
"@polkadot/dev": "0.40.19"
},
"devDependencies": {
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/helper-define-map": "^7.13.12",
"@polkadot/dev": "0.40.19",
"@types/bignumber.js": "^5.0.0",
"@types/jest": "^23.3.10",
"@types/node": "^10.12.23",
"@types/reach__router": "^1.2.2",
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.0",
"@types/react-redux": "^7.1.1",
"babel-jest": "^24.8.0",
"babel-plugin-conditional-compile": "^0.0.5",
"husky": "^2.7.0",
"jest": "^24.8.0",
"prettier": "^1.13.5",
"prettier-eslint": "^8.8.2",
"pretty-quick": "^1.11.1",
"react-hot-loader": "^4.9.0",
"tslint": "^5.12.1",
"typescript": "^3.5.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern 'src/**/*' && npx tslint -c tslint.json --project ."
}
}
}