-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "extension-demo",
"version": "1.7.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack --watch",
"dist": "NODE_ENV=production webpack && node zip.js",
"test": "",
"checkjs": "tsc --allowJs --checkJs --jsx react-jsx --noEmit --target ES5 src/**/*.js"
},
"author": "wnetking",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/react": "^16.7.20",
"babel-loader": "^8.0.4",
"copy-webpack-plugin": "^11.0.0",
"filesize": "^5.0.3",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@material-ui/core": "^4.4.2",
"@material-ui/icons": "^4.4.1",
"@types/chrome": "^0.0.246",
"mobx": "^5.8.0",
"mobx-react": "^5.4.3",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"uuid": "^3.3.2",
"zip-dir": "^1.0.2"
}
}