-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.24 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
{
"name": "speckleos-extension",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"postinstall": "check-node-version --package",
"start": "NODE_ENV=development gulp dev --require @std/esm",
"build": "NODE_ENV=production gulp build --require @std/esm",
"bundle": "NODE_ENV=production gulp bundle --require @std/esm",
"pretest": "yarn build",
"test": "ava"
},
"@std/esm": "all",
"browserslist": [
"last 1 Chrome version",
"last 1 Firefox version"
],
"engines": {
"node": ">=8.6",
"yarn": "^1.10.1"
},
"resolutions": {
"typescript": "^3.2.2"
},
"dependencies": {
"@material-ui/core": "^3.9.1",
"@material-ui/styles": "^3.0.0-alpha.9",
"@polkadot/util": "^0.33.35",
"lz-string": "^1.4.4",
"react": "^16.8.0-alpha.1",
"react-dom": "^16.8.0-alpha.1",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-saga": "^1.0.0",
"webextension-polyfill": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@std/esm": "^0.26.0",
"@types/chrome": "0.0.77",
"@types/react": "^16.7.22",
"@types/react-dom": "^16.0.11",
"@types/react-redux": "^7.0.0",
"@types/react-router-dom": "^4.3.1",
"@types/redux": "^3.6.0",
"@types/redux-saga": "^0.10.5",
"ava": "^1.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-proposals": "^0.1.0",
"chalk": "^2.4.2",
"check-node-version": "^3.1.1",
"del": "^3.0.0",
"dotenv": "^6.2.0",
"dotenv-webpack": "^1.6.0",
"eslint-config-accurapp": "^4.1.6",
"gulp": "^4.0.0",
"gulp-add-src": "^1.0.0",
"gulp-if": "^2.0.2",
"gulp-json-editor": "^2.5.0",
"gulp-notify": "^3.0.0",
"gulp-postcss": "^8.0.0",
"gulp-sass": "^4.0.2",
"gulp-zip": "^4.2.0",
"postcss-preset-env": "^6.5.0",
"puppeteer": "^1.11.0",
"sass-module-importer": "^1.4.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"stylelint": "^9.9.0",
"stylelint-config-rational-order": "^0.0.2",
"stylelint-scss": "^3.4.4",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"vinyl-named": "^1.1.0",
"webpack": "^4.28.3",
"webpack-stream": "^5.2.1"
}
}