-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.9 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
{
"name": "ecsy-devtools",
"version": "0.1.2",
"description": "**Adds a new panel to the developer tools. The panel contains buttons that demonstrate various basic features of the devtools API.**",
"main": "content-script.js",
"scripts": {
"webpack": "webpack --progress",
"development": "webpack --mode development",
"production": "webpack --mode production",
"watch": "webpack --mode development --watch",
"prepare": "rimraf dist && mkdir dist",
"sync": "webpack --mode development watch --sync"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MozillaReality/ecsy-devtools.git"
},
"author": "Mozilla Reality <[email protected]> (https://mixedreality.mozilla.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/MozillaReality/ecsy-devtools/issues"
},
"homepage": "https://github.com/MozillaReality/ecsy-devtools#readme",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"clean-webpack-plugin": "^2.0.2",
"css-loader": "^2.1.1",
"file-loader": "^4.2.0",
"prop-types": "^15.7.2",
"react-svg-loader": "^3.0.3",
"rimraf": "^3.0.2",
"style-loader": "^1.0.0",
"webextension-polyfill": "^0.4.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"why-did-you-update": "^1.0.6"
},
"dependencies": {
"classnames": "^2.2.6",
"events": "^3.0.0",
"express": "^4.17.1",
"incremental-stats-lite": "^0.1.1",
"peerjs": "^1.1.0",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-fast-compare": "^2.0.4",
"react-icons": "^3.8.0",
"react-json-tree": "^0.11.2",
"react-minimal-pie-chart": "^5.0.2",
"socket.io": "^2.3.0",
"styled-components": "^4.4.0"
}
}