-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
104 lines (104 loc) · 3.87 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "excalisave",
"version": "2.0.0",
"description": "",
"private": true,
"repository": "https://github.com/atharvakadlag/excalisave.git",
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"yarn": ">= 1.22.0"
},
"scripts": {
"dev:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome cross-env webpack --watch --config webpack.config.dev.js",
"dev:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox cross-env webpack --watch --config webpack.config.dev.js",
"dev:opera": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=opera cross-env webpack --watch --config webpack.config.dev.js",
"build:chrome": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=chrome cross-env webpack",
"build:firefox": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=firefox cross-env webpack",
"build:opera": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=opera cross-env webpack",
"build": "yarn run build:chrome && yarn run build:firefox && yarn run build:opera",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"test": "jest",
"storybook": "cross-env storybook dev -p 6006",
"build-storybook": "cross-env storybook build"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^2.0.0",
"clsx": "^2.0.0",
"dayjs": "^1.11.10",
"file-saver": "^2.0.5",
"idb-keyval": "^6.2.1",
"jotai": "^2.2.2",
"js-logger": "^1.6.1",
"jszip": "^3.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.11.0",
"tidy-url": "^1.8.3",
"webext-base-css": "^1.4.3",
"webextension-polyfill-ts": "^0.26.0"
},
"devDependencies": {
"@abhijithvijayan/eslint-config": "2.6.3",
"@abhijithvijayan/eslint-config-airbnb": "^1.0.2",
"@abhijithvijayan/tsconfig": "^1.3.0",
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.14.2",
"@babel/plugin-transform-destructuring": "^7.13.17",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@excalidraw/excalidraw": "0.16.1",
"@types/file-saver": "^2.0.7",
"@types/jest": "^29.5.7",
"@types/react": "^17.0.6",
"@types/react-dom": "^17.0.5",
"@types/webpack": "^5.28.4",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"filemanager-webpack-plugin": "^8.0.0",
"fork-ts-checker-webpack-plugin": "^9.0.0",
"html-webpack-plugin": "^5.5.3",
"install": "^0.13.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.3",
"resolve-url-loader": "^5.0.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-ext-reloader": "^1.1.10",
"wext-manifest-loader": "^3.0.0",
"wext-manifest-webpack-plugin": "^1.2.1",
"wrap-ansi": "7.0.0"
}
}