-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
130 lines (130 loc) · 3.69 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "eosio-reference-chrome-extension-authenticator-app",
"version": "0.1.1",
"license": "MIT",
"author": {
"name": "block.one",
"url": "https://block.one"
},
"contributors": [
"Mike Creque",
"Cody Douglass",
"Lucas Fonseca",
"Mike Manfredi",
"Jonathan Pratt",
"Tara Tritt",
"Ryan Wiesjahn",
"Bill Woodward"
],
"private": true,
"sideEffects": false,
"dependencies": {
"bip38": "^2.0.2",
"bs58": "^4.0.1",
"classnames": "^2.2.6",
"eosjs": "^20.0.0",
"eosjs-ecc": "^4.0.2",
"eosjs-signature-provider-interface": "^0.1.1",
"hash.js": "1.1.5",
"lodash": "^4.17.11",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.1.0",
"react-router-dom": "^4.3.1",
"react-scripts-ts": "^2.16.0",
"react-transition-group": "^2.5.3",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"ricardian-template-toolkit": "^0.2.0",
"ripemd160": "^2.0.2",
"uuid": "^3.3.2",
"wif": "^2.0.6"
},
"devDependencies": {
"@blockone/tslint-config-blockone": "^4.0.1",
"@types/bs58": "^4.0.0",
"@types/chrome": "^0.0.74",
"@types/classnames": "^2.2.7",
"@types/enzyme": "^3.1.12",
"@types/handlebars": "^4.0.39",
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.119",
"@types/node": "^10.5.3",
"@types/react": "^16.4.7",
"@types/react-dom": "^16.0.6",
"@types/react-redux": "^6.0.9",
"@types/react-router-dom": "^4.3.1",
"@types/react-transition-group": "^2.0.15",
"@types/redux-thunk": "^2.1.0",
"@types/ripemd160": "^2.0.0",
"@types/sinon-chrome": "^2.2.6",
"@types/text-encoding": "^0.0.35",
"@types/uuid": "^3.4.4",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^5.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-loader": "2.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "^7.10.0",
"gulp": "^3.9.1",
"gulp-crx-pack": "^1.0.2",
"gulp-git": "^2.8.0",
"gulp-json-editor": "^2.4.3",
"gulp-zip": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"jest-coverage-ratchet": "^0.2.3",
"node-fetch": "^2.3.0",
"node-sass-chokidar": "^1.3.0",
"npm-run-all": "^4.1.3",
"redux-devtools": "^3.4.1",
"sinon-chrome": "^2.3.2",
"text-encoding": "^0.7.0",
"ts-loader": "^3.5.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^3.3.3333",
"worker-loader": "^2.0.0"
},
"resolutions": {
"@types/sinon": "5.0.2"
},
"scripts": {
"build": "npm-run-all -p build-css build-js build-scripts",
"build-fix": "npm run lint --fix && npm run build",
"build-css": "node-sass-chokidar src/ -o src/",
"build-js": "react-scripts-ts build",
"build-scripts": "BABEL_ENV=production webpack --progress --config webpack.scripts.js",
"build-production": "npm-run-all lint build test-coverage test-ratchet",
"test": "react-scripts-ts test --env=jsdom",
"test-coverage": "react-scripts-ts test --coverage --env=jsdom --no-cache",
"test-ratchet": "jest-coverage-ratchet",
"eject": "react-scripts-ts eject",
"lint": "tslint \"src/**/*.ts{,?}\""
},
"jest": {
"collectCoverageFrom": [
"src/**",
"!src/assets/images/*.svg",
"!src/index.tsx",
"!src/contracts/**"
],
"coverageReporters": [
"json-summary",
"text",
"text-summary"
],
"coverageThreshold": {
"global": {
"lines": 97.85,
"statements": 97.81,
"functions": 98,
"branches": 95.65
}
}
}
}