-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"devDependencies": {
"@types/chrome": "^0.0.154",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/uikit": "^3.3.2",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.3",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.24.0",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^5.1.4",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"uikit": "^3.7.2",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-merge": "^5.8.0"
},
"scripts": {
"test": "jest",
"build": "webpack --config webpack.dev.js",
"build:prod": "webpack --config webpack.prod.js && zip -r archive.zip dist/",
"watch": "webpack --watch",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}