-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
104 lines (104 loc) · 3.31 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
{
"name": "synapse-extension",
"version": "0.4.0",
"description": "Synapse extension is a wallet for Nervos CKB",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js",
"watch": "webpack -w --config webpack.dev.js",
"lint": "eslint 'src/**/*.{ts, tsx}'",
"code:format": "prettier './src/**/**.{js,jsx,ts,tsx}' --write",
"test:watch": "jest --watchAll --runInBand --coverage",
"test": "jest --runInBand",
"test:e2e": "jest --runInBand --config jest.e2e.config.js",
"test:cov": "codecov",
"release": "./scripts/release.sh"
},
"author": "Rebase Team",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^10.2.1",
"@testing-library/user-event": "^11.3.1",
"@types/chrome": "0.0.60",
"@types/expect-puppeteer": "^4.4.3",
"@types/firefox-webext-browser": "^70.0.1",
"@types/jest": "^25.1.4",
"@types/jest-environment-puppeteer": "^4.3.2",
"@types/node": "^12.12.31",
"@types/puppeteer": "^3.0.1",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/react-router-dom": "^5.1.3",
"@types/webpack": "^4.41.17",
"@types/yup": "^0.26.33",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"codecov": "^3.7.2",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"dotenv": "^8.2.0",
"dotenv-webpack": "^1.8.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest-dom": "^3.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.6",
"eslint-plugin-testing-library": "^3.3.1",
"expect-puppeteer": "^4.4.0",
"jest": "^25.1.0",
"jest-config": "^25.1.0",
"jest-puppeteer": "^4.4.0",
"jest-webextension-mock": "^3.6.0",
"node-sass": "^4.13.1",
"prettier": "2.0.5",
"puppeteer": "^5.1.0",
"sass-loader": "^8.0.2",
"sinon-chrome": "^3.0.1",
"style-loader": "^1.1.3",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"tsconfig-paths-jest": "^0.0.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.8.3",
"webextension-polyfill": "^0.6.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2",
"window-crypto": "^1.1.0"
},
"dependencies": {
"@keyper/container": "^0.0.12",
"@keyper/specs": "^0.0.7",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@nervosnetwork/ckb-sdk-core": "^0.30.0",
"@nervosnetwork/ckb-sdk-utils": "^0.30.0",
"axios": "^0.19.2",
"blake2b": "^2.1.3",
"bn.js": "^5.1.2",
"browser-passworder": "^2.0.3",
"elliptic": "^6.5.3",
"formik": "^2.1.4",
"global": "^4.4.0",
"keccak": "^3.0.0",
"lodash": "^4.17.19",
"moment": "^2.25.3",
"number-to-bn": "^1.7.0",
"qrcode.react": "^1.0.0",
"query-string": "^6.12.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-intl": "^4.5.12",
"react-router-dom": "^5.1.2",
"scrypt.js": "^0.3.0",
"secp256k1": "^4.0.0",
"sha3": "^2.1.2",
"uuid": "^7.0.3",
"yup": "^0.28.3"
}
}