-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.38 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
49
{
"name": "requests-analyzer",
"version": "1.0.0",
"description": "Analyze what is happening on a wep page in the background",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"test": "npx jest",
"style": "npx eslint . --ext .ts,.tsx",
"style:fix": "npx eslint . --ext .ts,.tsx --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/lodash": "^4.14.170",
"bootstrap": "^4.6.0",
"lodash": "^4.17.21",
"react": "^17.0.1",
"react-bootstrap": "^1.6.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@types/chrome": "0.0.143",
"@types/jest": "^25.1.4",
"@types/jquery": "^3.3.33",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-jest": "^26.6.3",
"copy-webpack-plugin": "^6.1.0",
"css-loader": "^5.2.6",
"eslint": "^7.32.0",
"glob": "^7.1.6",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2 ",
"style-loader": "^2.0.0",
"ts-jest": "^25.2.1 ",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.44.1",
"webpack-cli": "~3.3.11",
"webpack-merge": "~4.2.2"
}
}