-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.08 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "craftidraw",
"version": "0.0.3",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"start": "turbo run start",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"dev:docs": "turbo run dev --filter=apps/docs",
"build:docs": "turbo run build --filter=apps/docs",
"start:docs": "turbo run start --filter=apps/docs"
},
"author": "flrp",
"license": "GPL-3.0",
"description": "",
"workspaces": [
"apps/*",
"packages/*"
],
"prettier": {
"arrowParens": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"semi": true,
"experimentalTernaries": false,
"singleQuote": true,
"jsxSingleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "all",
"singleAttributePerLine": false,
"htmlWhitespaceSensitivity": "css",
"vueIndentScriptAndStyle": false,
"proseWrap": "preserve",
"insertPragma": false,
"printWidth": 120,
"requirePragma": false,
"tabWidth": 4,
"useTabs": false,
"embeddedLanguageFormatting": "auto"
},
"packageManager": "[email protected]",
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@paralleldrive/cuid2": "^2.2.2",
"@reduxjs/toolkit": "^2.3.0",
"@stripe/react-stripe-js": "^2.8.1",
"@t3-oss/env-nextjs": "^0.10.1",
"@types/dompurify": "^3.0.5",
"@types/lodash": "^4.17.11",
"babel-plugin-react-compiler": "^19.0.0-beta-df7b47d-20241124",
"bootstrap": "^5.3.3",
"dompurify": "^3.1.7",
"geist": "^1.3.0",
"gl-matrix": "^3.4.3",
"jsonwebtoken": "^9.0.2",
"konva": "^9.3.16",
"lodash": "^4.17.21",
"monaco-editor": "^0.52.0",
"next": "^14.2.4",
"next-auth": "^4.24.7",
"next-redux-wrapper": "^8.1.0",
"next-sitemap": "^4.2.3",
"react": "^18.3.1",
"react-bootstrap": "^2.10.5",
"react-dom": "^18.3.1",
"react-intersection-observer": "^9.13.1",
"react-konva": "^18.2.10",
"react-konva-utils": "^1.0.6",
"react-redux": "^9.1.2",
"react-syntax-highlighter": "^15.6.1",
"sass": "^1.80.3",
"server-only": "^0.0.1",
"sharp": "^0.33.5",
"stripe": "^17.2.1",
"superjson": "^2.2.1",
"uuid": "^10.0.0",
"zod": "^3.23.3"
},
"devDependencies": {
"@types/eslint": "^8.56.10",
"@types/node": "^20.17.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.4",
"prettier": "3.3.3",
"turbo": "^2.2.3",
"typescript": "^5.6.3"
}
}