-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.01 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": "xskriba-xbublavy-reservation-ufe",
"version": "1.0.0",
"description": "Reservation System",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/reservation/reservation.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/ionic-team/stencil-component-starter.git"
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"start:app": "stencil build --dev --watch --serve",
"start": "yarn start:app",
"openapi": "openapi-generator-cli generate",
"convert-openapi": "js-yaml ./api/reservation.openapi.yaml > .openapi.json",
"mock-api": "open-api-mocker --schema .openapi.json --port 3100",
"start:mock": "run-s convert-openapi mock-api",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate"
},
"dependencies": {
"@fullcalendar/core": "^6.1.12",
"@fullcalendar/daygrid": "^6.1.12",
"@fullcalendar/interaction": "^6.1.12",
"@fullcalendar/list": "^6.1.12",
"@fullcalendar/timegrid": "^6.1.12",
"@fullcalendar/web-component": "^6.1.12",
"@material/web": "^1.2.0",
"@shoelace-style/shoelace": "^2.15.1",
"@stencil/core": "^4.7.0",
"axios": "1.6.0",
"dayjs": "^1.11.11",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"@openapitools/openapi-generator-cli": "^2.13.4",
"@types/jest": "^29.5.6",
"@types/node": "^16.18.11",
"axios-mock-adapter": "^1.22.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-svg-transformer": "^1.0.0",
"js-yaml": "^4.1.0",
"npm-run-all": "^4.1.5",
"open-api-mocker": "^2.0.0",
"puppeteer": "^21.9.0",
"stencil-router-v2": "^0.6.0"
},
"license": "MIT"
}