-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.85 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
{
"name": "bibata",
"description": "CLI for converting cursor svg files to png.",
"author": "Abdulkaiz Khatri <[email protected]>",
"version": "1.0.2",
"private": true,
"bugs": {
"url": "https://github.com/ful1e5/bibata/issues",
"email": "[email protected]"
},
"license": {
"type": "MIT",
"url": "https://opensource.org/license/mit/"
},
"repository": "ful1e5/bibata",
"fundinig": "https://github.com/ful1e5/bibata?sponsor=1",
"scripts": {
"flask-dev": "pip3 install --upgrade pip && pip3 install -r requirements.txt && python3 -m flask --debug --app api/core/index run -p 5328",
"next-dev": "next dev",
"dev": "concurrently \"yarn next-dev\" \"yarn flask-dev\"",
"postinstall": "prisma generate",
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@prisma/client": "^5.5.2",
"@uiw/react-color-wheel": "^1.4.2",
"@vercel/kv": "^1.0.0",
"concurrently": "^8.0.1",
"figma-api": "^1.11.0",
"geist": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"next": "^14.0.0",
"next-auth": "^4.24.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"swr": "^2.2.4",
"tinycolor2": "^1.6.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^20.7.1",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.8",
"@types/tinycolor2": "^1.4.6",
"@types/uuid": "^9.0.6",
"autoprefixer": "^10.4.16",
"eslint": "8.40.0",
"eslint-config-next": "^14.0.0",
"eslint-config-prettier": "^9.0.0",
"postcss": "^8.4.31",
"prisma": "^5.5.2",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
}
}