-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.02 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": "resources-saver-extension",
"version": "2.0.6",
"description": "Chrome extension for one click downloading all resources!",
"browserslist": [
"> 0.5%, last 2 versions, not dead"
],
"repository": "[email protected]:up209d/ResourcesSaverExt.git",
"author": "up209d <[email protected]>",
"license": "GPL-3.0+",
"scripts": {
"dev": "yarn cp && parcel watch ./src/*.html --no-hmr --dist-dir unpacked2x",
"dev-serve": "yarn cp && parcel ./src/*.html --port 20987 --dist-dir unpacked2x",
"build": "yarn cp && parcel build ./src/*.html --dist-dir unpacked2x",
"cp": "yarn clean && mkdir -p unpacked2x && cp -r ./src/static/* unpacked2x",
"clean": "rm -rf .parcel-cache && rm -rf dist && rm -rf unpacked2x",
"reset": "yarn clean && rm -rf ./.cache && rm -rf ./.parcel-cache",
"local": "rm -rf ./node_modules/parcel-plugin-local && yarn install --check-files && yarn reset",
"auto": "rm -rf output && babel-node auto.js --presets @babel/preset-env",
"prettier": "yarn prettier"
},
"alias": {
"devtoolApp": "./src/devtoolApp",
"components": "./src/components"
},
"parcelExternals": [
"fonts/**/*",
"vendors/**/*"
],
"dependencies": {
"@zip.js/zip.js": "^2.6.26",
"app": "^0.1.0",
"context": "^3.0.4",
"global": "^4.4.0",
"lodash": "^4.17.21",
"polished": "^4.2.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-spring": "^9.5.4",
"reset-css": "^5.0.1",
"store": "^2.0.12",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@parcel/config-default": "^2.7.0",
"@parcel/plugin": "^2.7.0",
"@parcel/transformer-raw": "^2.7.0",
"@parcel/transformer-sass": "^2.7.0",
"parcel": "^2.7.0",
"parcel-namer-resource-saver": "file:./plugins/parcel-namer-resource-saver",
"puppeteer": "^21.3.8",
"sass": "^1.54.9"
}
}