forked from GetSpeckle/speckle-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.18 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
{
"name": "speckle-browser-extension",
"version": "0.9.0",
"description": "Universal browser extension for Web 3 and the Polkadot ecosystem.",
"repository": {
"type": "git",
"url": "[email protected]:SpeckleOS/speckle-browser-extension.git"
},
"main": "index.js",
"scripts": {
"check": "tslint --project . && tsc --noEmit --pretty",
"clean": "rm -rf node_modules dist",
"dev": "cross-env NODE_ENV=development webpack -d",
"lint": "tslint --fix -c ./tslint.json 'src/**/*{.ts,.tsx}'",
"prod": "cross-env NODE_ENV=production webpack -p",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"watch": "cross-env NODE_ENV=watch webpack -d"
},
"resolutions": {
"@polkadot/api": "^2.3.1",
"@polkadot/api-contract": "^2.3.1",
"@polkadot/keyring": "^3.6.1",
"@polkadot/types": "^2.3.1",
"@polkadot/util": "^3.6.1",
"@polkadot/util-crypto": "^3.6.1",
"babel-core": "^7.0.0-bridge.0",
"typescript": "^3.9.7"
},
"dependencies": {
"@polkadot/api": "^2.3.1",
"@polkadot/api-contract": "^2.3.1",
"@polkadot/extension-dapp": "^0.34.1",
"@polkadot/keyring": "^3.6.1",
"@polkadot/react-identicon": "^0.61.1",
"@polkadot/react-qr": "^0.61.1",
"@polkadot/types": "^2.3.1",
"@polkadot/util": "^3.6.1",
"@polkadot/util-crypto": "^3.6.1",
"@types/react-dropzone": "^4.2.2",
"bn.js": "^4.11.8",
"gsap": "^2.1.3",
"qrcode.react": "^0.9.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-dropzone": "^10.2.2",
"react-image-mapper": "^0.0.15",
"react-redux": "^7.2.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-tippy": "^1.4.0",
"redux": "^4.0.5",
"redux-promise-middleware": "^6.1.2",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.2",
"styled-components": "^5.1.1",
"webextension-polyfill-ts": "^0.8.9"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@polkadot/react-components": "^0.39.1",
"@types/chrome": "^0.0.81",
"@types/gsap": "^1.20.2",
"@types/jest": "^24.0.11",
"@types/node": "^11.11.3",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/react-test-renderer": "^16.9.2",
"@types/redux": "^3.6.1",
"@types/styled-components": "^5.1.0",
"@types/webpack": "^4.41.12",
"awesome-typescript-loader": "^5.2.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"react-test-renderer": "^16.8.4",
"resolve-url-loader": "^3.1.0",
"style-loader": "^0.23.1",
"stylelint": "^13.6.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"ts-jest": "^24.0.0",
"tslint": "^5.14.0",
"tslint-config-standard": "^8.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.9.7",
"url-loader": "^1.1.2",
"webpack": "^4.43.0",
"webpack-chrome-extension-reloader": "^1.3.0",
"webpack-cli": "^3.3.11"
}
}