-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
{
"name": "cylint",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc && vite build",
"deploy": "VITE_EMULATORS=false yarn build && firebase deploy --except functions",
"deploy:functions": "firebase deploy --only functions",
"dev": "vite",
"emulators:start": "firebase emulators:start",
"gen:schema": "rm -rf src/api; openapi2aspida -i ./openapi.yaml -o src/api",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@aspida/fetch": "^1.14.0",
"ace-builds": "^1.32.3",
"aspida": "^1.14.0",
"firebase": "^9.22.0",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-ace": "^10.1.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.7",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"openapi2aspida": "^0.23.2",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"react-firebase-hooks": "^5.1.1",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vite-tsconfig-paths": "^4.2.0"
}
}