This repository has been archived by the owner on Jan 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
94 lines (94 loc) · 2.67 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
{
"name": "single_source_extension",
"version": "1.1.0",
"scripts": {
"run-on-browser": "webpack-dev-server --mode development",
"start": "webpack --watch --progress --mode development",
"build": "webpack --mode production --progress",
"build:dev": "webpack --mode development --progress",
"check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch"
},
"targets": {
"chrome": "66",
"firefox": "63"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@cennznet/wallet": "^0.20.6",
"@plugnet/dev-react": "^0.30.7",
"@types/crypto-js": "^3.1.43",
"@types/jest": "^24.0.9",
"@types/lodash": "^4.14.136",
"@types/react": "16.8.22",
"@types/react-dom": "^16.0.11",
"@types/react-redux": "^7.1.1",
"@types/readable-stream": "^2.3.2",
"@types/redux": "^3.6.0",
"@types/redux-actions": "^2.6.1",
"@types/safe-json-stringify": "^1.1.0",
"@types/styled-components": "4.1.8",
"@types/uuid": "^3.4.5",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"http-server": "^0.11.1",
"husky": "^3.0.1",
"jest": "^24.1.0",
"prettier": "^1.17.0",
"pretty-quick": "^1.11.1",
"remote-redux-devtools": "^0.5.16",
"ts-jest": "^24.0.0",
"webextension-polyfill-ts": "^0.9.1",
"webpack-extension-manifest-plugin": "^0.4.3"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"@cennznet/api": "^0.20.6",
"@material-ui/core": "^3.8.1",
"@material-ui/icons": "^3.0.1",
"@types/lz-string": "^1.3.33",
"@types/qrcode.react": "^0.8.2",
"@types/remote-redux-devtools": "^0.5.3",
"@types/reselect": "^2.2.0",
"bignumber.js": "^8.1.1",
"copy-to-clipboard": "^3.2.0",
"crypto-js": "^3.1.9-1",
"immer": "^3.1.3",
"lodash": "^4.17.14",
"lz-string": "^1.4.4",
"peerjs": "^1.0.1",
"qrcode.react": "^0.9.3",
"query-string": "^6.8.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"readable-stream": "^3.4.0",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-observable": "^1.0.0",
"redux-persist": "^5.10.0",
"reselect": "^4.0.0",
"rxjs": "^6.5.2",
"safe-json-stringify": "^1.2.0",
"styled-components": "^4.1.2",
"uuid": "^3.3.2"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "jest-environment-node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern 'packages/**/src/**/*' && npx tslint -c tslint.json --project ."
}
}
}