-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
102 lines (102 loc) · 3.4 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
{
"name": "meteor-devtools-evolved",
"version": "1.8.1",
"description": "Meteor DevTools Evolved",
"repository": "https://github.com/leonardoventurini/meteor-devtools-evolved",
"keywords": [
"meteor",
"ddp",
"devtools"
],
"scripts": {
"setup": "cd devapp && yarn && cd ../ && yarn",
"devapp": "cd devapp && yarn start",
"build:chrome": "webpack --config webpack/chrome.prod.js",
"build:firefox": "webpack --config webpack/firefox.prod.js",
"dev:chrome": "run-p build:chrome devapp open:chrome",
"dev:firefox": "run-p build:firefox devapp open:firefox",
"dev": "yarn dev:chrome",
"wait:firefox": "wait-on extension/firefox/manifest.json http://localhost:2100",
"wait:chrome": "wait-on extension/chrome/manifest.json http://localhost:2100",
"open:firefox": "yarn wait:firefox && web-ext run --start-url \"http://localhost:2100\" --source-dir ./extension/firefox/ --browser-console",
"open:chrome": "yarn wait:chrome && web-ext run -t chromium --start-url \"http://localhost:2100\" --source-dir ./extension/chrome/ --browser-console",
"clean": "rimraf extension/firefox extension/chrome",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx --cache ."
},
"author": "Leonardo Venturini",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@blueprintjs/core": "4.14.1",
"@blueprintjs/icons": "4.12.1",
"@blueprintjs/popover2": "^1.11.1",
"@heroicons/react": "^2.0.13",
"@tstt/eslint-config": "^0.1.4",
"@types/chrome": "0.0.178",
"@types/classnames": "^2.2.10",
"@types/luxon": "^2.0.5",
"@types/meteor": "^2.0.4",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@types/react-json-tree": "^0.13.0",
"@types/react-window": "^1.8.1",
"@types/react-window-infinite-loader": "^1.0.3",
"@types/styled-components": "^5.1.0",
"babel-loader": "^8.1.0",
"classnames": "2.3.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.3.0",
"d3-collection": "^1.0.7",
"d3-hierarchy": "^3.0.1",
"d3-selection": "^3.0.0",
"d3-shape": "^3.0.1",
"daisyui": "^2.15.2",
"dexie": "3.2.2",
"file-loader": "^6.2.0",
"lodash.debounce": "^4.0.8",
"lodash.memoize": "^4.1.2",
"lodash.sortby": "^4.7.0",
"lodash.throttle": "^4.1.1",
"luxon": "2.5.2",
"mobx": "6.4.0",
"mobx-react-lite": "3.3.0",
"normalize.css": "8.0.1",
"polished": "4.1.4",
"postcss-loader": "^7.0.0",
"pretty-bytes": "6.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-is": "17.0.2",
"react-singleton-hook": "^3.2.1",
"react-window": "1.8.6",
"react-window-infinite-loader": "1.0.7",
"sass": "^1.51.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.3.0",
"styled-components": "5.3.3",
"tailwindcss": "^3.0.24",
"terser-webpack-plugin": "^5.2.4",
"ts-loader": "^9.2.6",
"tslib": "^2.3.1",
"typescript": "^4.4.3",
"uuid": "^8.3.2",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.0",
"webpack-merge": "^5.8.0"
},
"volta": {
"node": "14.19.3",
"yarn": "1.22.18"
},
"devDependencies": {
"@types/webextension-polyfill": "^0.9.0",
"concurrently": "^7.2.2",
"copy-webpack-plugin": "^11.0.0",
"npm-run-all": "^4.1.5",
"wait-on": "^6.0.1",
"web-ext": "^7.1.0",
"webextension-polyfill": "^0.9.0"
}
}