-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
111 lines (111 loc) · 3.97 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "chromunity",
"version": "0.2.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/styles": "^4.10.0",
"@reduxjs/toolkit": "^1.3.6",
"@sentry/browser": "^5.24.2",
"@types/node": "14.11.2",
"@types/react": "16.9.50",
"@types/react-dom": "16.9.8",
"@types/react-router": "^5.1.7",
"@types/redux-logger": "^3.0.8",
"bip39": "3.0.2",
"boomerang-cache": "1.2.0",
"clsx": "^1.1.1",
"cryptico": "^1.0.2",
"crypto-js": "^4.0.0",
"emoji-dictionary": "^1.0.11",
"emoji-mart": "^3.0.0",
"enzyme": "^3.11.0",
"ft3-lib": "^3.4.2",
"hdkey": "2.0.1",
"history": "4.10.1",
"jsdom-global": "3.0.2",
"jsencrypt": "^3.0.0-rc.1",
"keypair": "^1.0.1",
"postchain-client": "0.9.2",
"prop-types": "^15.7.2",
"query-string": "^6.13.3",
"react": "^16.13.0",
"react-avatar-edit": "0.8.3",
"react-copy-to-clipboard": "^5.0.2",
"react-device-detect": "^1.13.1",
"react-dom": "^16.13.0",
"react-markdown": "4.3.1",
"react-meta-tags": "^0.7.4",
"react-piwik": "^1.10.0",
"react-redux": "^7.2.1",
"react-responsive-embed": "^2.1.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-share": "^4.3.0",
"react-tiny-link": "^3.6.0",
"reactour": "^1.18.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"redux-saga-test-plan": "^4.0.0-rc.3",
"scrypt-async": "^2.0.1",
"secp256k1": "4.0.2",
"styled-components": "^5.2.0",
"ts-stopwatch": "0.0.4",
"typescript": "3.9.7",
"winston": "^3.3.3"
},
"scripts": {
"start": "react-scripts start",
"build": "cp ./src/config.js ./src/config.bak.js && cp ./src/config-prod.js ./src/config.js && react-scripts build && mv ./src/config.bak.js ./src/config.js",
"build-dev": "cp ./src/config.js ./src/config.bak.js && cp ./src/config-dev.js ./src/config.js && cp ./public/robots.txt ./public/robots.txt.bak && cp ./public/robots.txt.dev ./public/robots.txt && react-scripts build && mv ./src/config.bak.js ./src/config.js && mv ./public/robots.txt.bak ./public/robots.txt",
"build-testnet": "cp ./src/config.js ./src/config.bak.js && cp ./src/config-testnet.js ./src/config.js && cp ./public/robots.txt ./public/robots.txt.bak && cp ./public/robots.txt.dev ./public/robots.txt && react-scripts build && mv ./src/config.bak.js ./src/config.js && mv ./public/robots.txt.bak ./public/robots.txt",
"build-local": "react-scripts build",
"test": "jest --config jest.config.js --setupFiles dotenv/config",
"eject": "react-scripts eject",
"format": "prettier --write '{**/*,*}.{js,ts,tsx}'",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"fix-lint": "eslint --fix 'src/**/*.{ts,tsx}'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/crypto-js": "^3.1.47",
"@types/enzyme": "^3.10.7",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.14",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/scrypt-async": "^1.3.1",
"@types/secp256k1": "4.0.1",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"dotenv": "^8.2.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"eslint-config-airbnb-typescript-prettier": "^3.1.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-react": "^7.21.3",
"jest-cli": "^26.4.2",
"jest-styled-components": "^7.0.3",
"jsdom": "16.4.0",
"mock-local-storage": "^1.1.15",
"prettier": "^2.1.2",
"react-test-renderer": "^16.13.1",
"ts-jest": "^26.4.1"
}
}