-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "easy-speed-dial",
"type": "module",
"imports": {
"#*": "./src/*"
},
"scripts": {
"build": "vite build",
"build:chrome": "PROJECT=chrome vite build",
"build:firefox": "PROJECT=firefox vite build",
"dev": "vite --host 0.0.0.0 --open",
"format": "prettier --write .",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"preview": "vite preview --host 0.0.0.0 --open",
"test": "node --test",
"test:watch": "node --test --watch"
},
"dependencies": {
"classnames": "^2.5.1",
"localforage": "^1.10.0",
"mobx": "^6.12.0",
"mobx-react-lite": "^4.0.5",
"modern-normalize": "^2.0.0",
"random-color-library": "^0.1.1",
"react": "^18.2.0",
"react-colorful": "^5.6.1",
"sortablejs": "^1.15.2",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.2.5",
"vite": "^5.1.3",
"web-ext": "^7.11.0"
}
}