-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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
{
"name": "closure-tools-devtool",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "run-p -l 'build:js:dev -- --watch' 'build:css -- --watch'",
"build:js:dev": "webpack --mode=development",
"build:js:prod": "webpack --mode=production",
"build:css": "tailwindcss -o ./dist/style.css",
"build:prod": "run-s clean build:js:prod build:css && cd dist && zip -r extension.zip ./* && mv -f ./extension.zip ..",
"clean": "rimraf dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.195",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.2.6",
"copy-webpack-plugin": "^11.0.0",
"google-closure-library": "^20220803.0.0",
"html-webpack-plugin": "^5.3.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"rimraf": "^3.0.2",
"tailwindcss": "^3.1.8",
"ts-loader": "^9.2.3",
"typescript": "^4.3.4",
"url-loader": "^4.1.1",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.0",
"classnames": "^2.3.1",
"json-stringify-safe": "^5.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-json-view": "^1.21.3",
"react-redux": "^8.0.2"
}
}