-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.73 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
{
"name": "improved-potato",
"version": "1.0.0",
"private": false,
"description": "Chrome extension to manage bookmarks sanely",
"license": "MIT",
"author": "Pathetic Geek<[email protected]>",
"scripts": {
"build": "rollup -c",
"release": "cross-env NODE_ENV=production rollup -c",
"start": "rollup -c -w",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "yarn lint --fix",
"verify": "yarn prettier && yarn lint",
"verify:fix": "yarn prettier:fix && yarn lint:fix"
},
"dependencies": {
"@radix-ui/react-icons": "^1.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"twind": "^0.16.16",
"usehooks-ts": "^1.0.7",
"webextension-polyfill": "^0.7.0"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/chrome": "^0.0.127",
"@types/firefox-webext-browser": "^82.0.1",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"prettier": "^2.4.1",
"prettier-config-standard": "^4.0.0",
"rollup": "^2.58.3",
"rollup-plugin-chrome-extension": "~3.6.4",
"rollup-plugin-empty-dir": "^1.0.5",
"rollup-plugin-zip": "^1.0.3",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
}
}