-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 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
{
"name": "contact-picker-api-demo",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"base:eslint": "eslint .",
"base:prettier": "prettier .",
"fix": "yarn base:eslint --fix && yarn base:prettier --write -l",
"lint": "yarn base:eslint && yarn base:prettier --check && yarn tsc --noEmit --skipLibCheck"
},
"dependencies": {
"@nanostores/react": "^0.4.1",
"@reach/dialog": "^0.18.0",
"clsx": "^1.2.1",
"nanostores": "^0.7.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite-plugin-svgo": "^1.3.0"
},
"devDependencies": {
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.52.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"lefthook": "^1.2.9",
"postcss": "^8.4.21",
"postcss-preset-env": "^8.0.1",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"tailwindcss": "^3.2.6",
"typescript": "^4.9.5",
"vite": "^4.1.0",
"vite-plugin-mkcert": "^1.13.3"
}
}