-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 3.04 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
61
62
63
64
65
{
"name": "autoviewed",
"version": "1.1.2",
"description": "Let me approve that file for you",
"scripts": {
"build": "npm run build:clean && npm run build:cp && npm run build:images && npm run build:rollup",
"build:clean": "rm -rf dist && mkdir dist && mkdir -p dist/images",
"build:cp": "cp manifest.json dist && cp src/*.html dist",
"build:images": "svg2png images/icon.svg --output dist/images/icon16.png --width=16 --height=16 && svg2png images/icon.svg --output dist/images/icon24.png --width=24 --height=24 && svg2png images/icon.svg --output dist/images/icon32.png --width=32 --height=32 && svg2png images/icon.svg --output dist/images/icon48.png --width=48 --height=48 && svg2png images/icon.svg --output dist/images/icon64.png --width=64 --height=64 && svg2png images/icon.svg --output dist/images/icon128.png --width=128 --height=128 && svg2png images/icon.svg --output dist/images/icon256.png --width=256 --height=256 && svg2png images/icon.svg --output dist/images/icon512.png --width=512 --height=512",
"build:rollup": "rollup --config",
"build:watch": "rollup --config --watch",
"build:ts": "tsc",
"build:zip": "cd dist && zip -r autoviewed-extension.zip . -x *.map && cd -",
"cy:open": "start-server-and-test 'start-storybook -p 6007 --ci' http://localhost:6007 'cypress open'",
"cy:run": "start-server-and-test 'start-storybook -p 6007 --ci' http://localhost:6007 'cypress run'",
"dist": "NODE_ENV=production npm run build && npm run cy:run && npm run build:zip",
"dist:quick": "NODE_ENV=production npm run build && npm run build:zip",
"prettier": "prettier --write . --ignore-path .gitignore",
"storybook": "start-storybook -p 6006",
"prepare": "husky install"
},
"keywords": [],
"author": "Luismahou",
"license": "ISC",
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
"@babel/core": "^7.16.7",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.0.1",
"@rollup/plugin-typescript": "^8.0.3",
"@storybook/addon-actions": "^6.4.13",
"@storybook/addons": "^6.4.13",
"@storybook/react": "^6.4.13",
"@testing-library/cypress": "^8.0.2",
"@types/chrome": "0.0.176",
"@types/filesystem": "^0.0.32",
"@types/lodash": "^4.14.178",
"@types/lodash-es": "^4.17.5",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"babel-loader": "^8.2.3",
"cypress": "^9.2.1",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"pretty-quick": "^3.1.3",
"rollup": "^2.64.0",
"rollup-plugin-sizes": "^1.0.4",
"rollup-plugin-visualizer": "^5.5.4",
"start-server-and-test": "^1.14.0",
"svg2png": "^4.1.1",
"tslib": "^2.0.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"immer": "^9.0.12",
"lodash-es": "4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}