-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "",
"version": "0.0.0",
"description": "",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"clean": "gts clean",
"fix": "gts fix",
"build": "webpack --config webpack.config.js",
"postbuild": "cpx \"src/static/*.{json,html,png}\" dist"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/chrome": "^0.0.180",
"@types/node": "^14.11.2",
"@types/react-dom": "^17.0.14",
"@vitejs/plugin-react": "^1.3.0",
"cpx": "^1.5.0",
"css-loader": "^6.7.1",
"dotenv": "^16.0.0",
"gts": "^3.1.0",
"sass": "^1.49.11",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.0.3",
"url-loader": "^4.1.1",
"vite": "^2.9.1",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"bootstrap": "^5.1.3",
"react": "^18.0.0",
"react-bootstrap": "^2.2.2",
"react-dom": "^18.0.0"
}
}