-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·59 lines (59 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
55
56
57
58
59
{
"name": "signify-browser-extension",
"displayName": "Polaris",
"version": "0.0.1",
"description": "Signify Browser Extension",
"license": "APACHE 2.0",
"repository": {
"type": "git",
"url": "https://github.com/weboftrust/signify-browser-extension.git"
},
"scripts": {
"build": "vite build",
"build:firefox": "BROWSER=firefox vite build",
"dev": "nodemon"
},
"type": "module",
"dependencies": {
"lodash": "^4.17.21",
"nanoid": "^5.0.6",
"react": "^18.2.0",
"react-collapsible": "^2.10.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-intl": "^6.6.2",
"react-tooltip": "^5.26.2",
"signify-ts": "github:WebOfTrust/signify-ts",
"styled-components": "^6.1.8",
"styled-system": "^5.1.5",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.26",
"@types/chrome": "^0.0.237",
"@types/lodash": "^4.14.197",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/styled-system": "^5.1.22",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.13",
"esbuild": "^0.24.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.3.0",
"fs-extra": "^11.1.0",
"nodemon": "^2.0.20",
"postcss": "^8.4.21",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vite": "^4.5.1",
"vite-plugin-node-polyfills": "^0.17.0"
}
}