-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.48 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
{
"name": "flatdraw",
"version": "1.0.7",
"author": "Diogo Capela",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist && rm -rf out && rm -rf node_modules",
"postinstall": "node -r esm scripts/postinstall.ts",
"next:dev": "next dev",
"next:build": "next build",
"next:export": "next export",
"next:start": "next start",
"functions:dev": "wrangler pages dev out --port 3001",
"eslint:lint": "next lint",
"prettier:format": "prettier --write .",
"check": "npm run eslint:lint && npm run prettier:format",
"dev": "concurrently \"npm run next:dev\" \"npm run functions:dev\"",
"build": "npm run next:build && npm run next:export",
"preview": "npm run build && npm run functions:dev"
},
"dependencies": {
"@emotion/react": "11.11.1",
"@emotion/server": "11.11.0",
"@emotion/styled": "11.11.0",
"@mantine/core": "6.0.4",
"@mantine/dropzone": "6.0.4",
"@mantine/hooks": "6.0.4",
"@mantine/modals": "6.0.4",
"@mantine/next": "6.0.4",
"@mantine/notifications": "6.0.4",
"@mantine/nprogress": "6.0.4",
"axios": "1.4.0",
"canvas-txt": "3.0.0",
"lodash": "4.17.21",
"next": "13.2.4",
"nextjs-google-analytics": "2.3.3",
"nookies": "2.5.2",
"react": "18.2.0",
"react-color": "2.19.3",
"react-dom": "18.2.0",
"react-icons": "4.8.0",
"svg-path-bbox": "1.2.4",
"svgpath": "2.6.0",
"uuid": "9.0.0",
"zustand": "4.4.1"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20230807.0",
"@types/canvas-txt": "3.0.0",
"@types/lodash": "4.14.197",
"@types/node": "18.15.3",
"@types/react": "18.0.28",
"@types/react-color": "3.0.6",
"@types/react-dom": "18.0.11",
"@types/uuid": "9.0.2",
"@typescript-eslint/eslint-plugin": "6.3.0",
"@typescript-eslint/parser": "6.3.0",
"concurrently": "8.2.0",
"eslint": "8.47.0",
"eslint-config-next": "13.4.13",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.33.1",
"eslint-plugin-react-hooks": "4.6.0",
"esm": "3.2.25",
"prettier": "3.0.1",
"typescript": "5.1.6",
"wrangler": "3.5.0"
},
"homepage": "https://github.com/diogocapela/flatdraw#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/diogocapela/flatdraw.git"
},
"bugs": {
"url": "https://github.com/diogocapela/flatdraw/issues"
}
}