-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 923 Bytes
/
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
{
"name": "@chabok/web-sdk-demo",
"version": "1.0.0",
"files": [
"dist"
],
"scripts": {
"dev": "esno scripts/dev.ts",
"build": "esno scripts/build.ts",
"serve": "vite preview",
"lint": "eslint . --ext .ts --ext .js",
"deploy": "cd dist && git add --all && git commit -m \"Release at $(date)\" && git subtree push --prefix dist origin gh-pages"
},
"dependencies": {
"@chabok/ui": "^0.13.4",
"firebase": "^9.6.1",
"postcss": "^8.3.11",
"tailwindcss": "^2.2.19",
"vue": "^3.2.26"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@vitejs/plugin-vue": "^2.0.1",
"@vue/compiler-sfc": "^3.2.26",
"autoprefixer": "^10.4.2",
"consola": "^2.15.3",
"eslint": "^8.6.0",
"eslint-plugin-vue": "^8.2.0",
"esno": "^0.10.1",
"typescript": "^4.5.4",
"vite": "^2.7.10"
}
}