-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "chrome-asset-downloader",
"version": "1.0.0",
"description": "Chrome Plugin for downloading assets from a web page",
"main": "index.js",
"repository": "https://github.com/corycaywood/chrome-asset-downloader.git",
"author": "Cory Caywood <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"@zip.js/zip.js": "^2.7.40",
"bootstrap": "3.3.6",
"http-server": "^14.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/chrome": "0.0.158",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.17.0",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.10.0",
"glob": "^7.1.6",
"jest": "^29.5.0",
"lodash": "^4.17.21",
"prettier": "^2.2.1",
"rimraf": "^3.0.2 ",
"style-loader": "^3.3.4",
"ts-jest": "^29.1.0",
"ts-loader": "^8.0.0",
"typescript": "^5.0.4",
"webpack": "^5.76.0",
"webpack-cli": "^4.0.0",
"webpack-merge": "^5.0.0"
},
"scripts": {
"start": "http-server dist/ & yarn watch",
"watch": "yarn clean && webpack --config webpack.config.js --devtool inline-source-map --mode development --watch",
"build": "yarn clean && webpack --config webpack.config.js --mode production",
"clean": "rimraf dist",
"test": "npx jest",
"style": "prettier --write \"src/**/*.{ts,tsx}\""
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"manifest.json",
"build/",
"devtools/"
]
}