-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.64 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
{
"name": "react-stores-inspector",
"version": "0.1.0",
"author": "IBIT LTD.",
"license": "MIT",
"repository": "https://github.com/ibitcy/react-stores-devtools-extension.git",
"dependencies": {
"@emotion/core": "^10.0.27",
"@types/chrome": "^0.0.95",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"ace-builds": "^1.4.8",
"class-transformer": "^0.2.3",
"copy-webpack-plugin": "^5.1.1",
"file-loader": "^5.1.0",
"fork-ts-checker-webpack-plugin": "^4.0.4",
"raw-loader": "^4.0.0",
"react": "^16.11.0",
"react-ace": "^8.0.0",
"react-dom": "^16.11.0",
"react-stores": "^5.0.1",
"reflect-metadata": "^0.1.13",
"stacktrace-js": "^2.0.2",
"ts-loader": "^6.2.1",
"tslib": "^1.10.0",
"typescript": "^3.7.5",
"url-loader": "^3.0.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"scripts": {
"dev": "webpack --watch --config ./webpack/webpack.config.app.js --mode development --progress",
"build:example": "NODE_ENV='development' webpack --config ./webpack/webpack.config.example.js",
"build:devtoolApp": "webpack --mode production --config ./webpack/webpack.config.app.js",
"build:inject": "webpack --mode production --config ./webpack/webpack.config.inject.js",
"prebuild:extension": "rimraf ./extension && mkdir extension && yarn run build:inject",
"build:extension": "webpack --mode production --config ./webpack/webpack.config.extension.js",
"build": "yarn run build:extension && yarn run build:devtoolApp",
"postbuild": "zip -r extension.zip extension"
}
}