-
Notifications
You must be signed in to change notification settings - Fork 378
/
Copy pathpackage.json
64 lines (64 loc) · 1.45 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
{
"name": "openblocks-comps",
"version": "0.0.4",
"type": "module",
"license": "MIT",
"dependencies": {
"@fullcalendar/core": "^6.0.3",
"@fullcalendar/daygrid": "^6.0.3",
"@fullcalendar/interaction": "^6.0.3",
"@fullcalendar/list": "^6.0.3",
"@fullcalendar/moment": "^6.1.4",
"@fullcalendar/react": "^6.0.3",
"@fullcalendar/timegrid": "^6.0.3",
"@types/react": "17",
"@types/react-dom": "17",
"big.js": "^6.2.1",
"mermaid": "^10.0.2",
"openblocks-cli": "workspace:^",
"openblocks-sdk": "workspace:^",
"react": "17",
"react-dom": "17",
"typescript": "4.8.4"
},
"openblocks": {
"description": "",
"comps": {
"chart": {
"name": "Chart",
"icon": "./icons/icon-chart.svg",
"layoutInfo": {
"w": 11,
"h": 35
}
},
"imageEditor": {
"name": "Image Editor",
"icon": "./icons/icon-chart.svg",
"layoutInfo": {
"w": 15,
"h": 60
}
},
"calendar": {
"name": "Calendar",
"icon": "./icons/icon-comp-calendar.svg",
"layoutInfo": {
"w": 15,
"h": 60
}
}
}
},
"scripts": {
"start": "vite",
"build": "yarn test && openblocks-cli build",
"build_only": "openblocks-cli build",
"test": "jest"
},
"devDependencies": {
"jest": "29.3.0",
"vite": "^3.2.7",
"vite-tsconfig-paths": "^3.6.0"
}
}