-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.65 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
{
"name": "@story-cms/kit",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "histoire dev",
"todo-lint": "eslint .",
"clean": "del-cli dist",
"ui:build": "vite build",
"backend:build": "tsup-node && tsc -p tsconfig.backend.json --emitDeclarationOnly --declaration",
"copy:templates": "copyfiles --up 3 \"src/backend/stubs/**/*.stub\" dist/backend",
"build": "npm run ui:build && npm run backend:build",
"prebuild": "npm run clean",
"postbuild": "npm run copy:templates",
"story:build": "histoire build",
"story:preview": "histoire preview",
"test:e2e": "npx playwright test tests/e2e/*.ts"
},
"main": "./dist/backend/index.js",
"exports": {
".": {
"import": "./dist/backend/index.js",
"types": "./dist/backend/index.d.ts"
},
"./version_context_middleware": "./dist/backend/middleware/version_context.js",
"./admin_middleware": "./dist/backend/middleware/admin.js",
"./story_provider": "./dist/backend/providers/story_provider.js",
"./ui": {
"import": "./dist/frontend/main.js",
"types": "./dist/frontend/main.d.ts"
},
"./styles.css": "./dist/frontend/styles.css",
"./index.css": "./dist/frontend/index.css"
},
"files": [
"dist",
"src"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.697.0",
"@aws-sdk/lib-storage": "^3.697.0",
"@headlessui/vue": "^1.7.22",
"@inertiajs/vue3": "^1.1.0",
"@poppinss/utils": "^6.7.3",
"@rive-app/canvas": "^2.23.9",
"@types/luxon": "^3.3.0",
"easymde": "^2.18.0",
"luxon": "^3.5.0",
"marked": "^15.0.3",
"pinia": "^2.1.7",
"vue": "^3.4.21"
},
"//": {},
"devDependencies": {
"@adonisjs/core": "^6.2.3",
"@adonisjs/session": "^7.4.2",
"@histoire/plugin-vue": "^0.17.17",
"@playwright/test": "^1.49.0",
"@swc/core": "^1.3.107",
"@tailwindcss/forms": "^0.5.9",
"@types/node": "^22.5.5",
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.4.19",
"copyfiles": "^2.4.1",
"del-cli": "^5.1.0",
"eslint": "^9.10.0",
"histoire": "^0.17.17",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"vite": "^5.2.0",
"vite-plugin-dts": "^4.2.1"
},
"peerDependencies": {
"pinia": "^2.1.7",
"vue": "^3.4.21"
},
"tsup": {
"entry": [
"./src/backend/index.ts",
"./src/backend/middleware/admin.ts",
"./src/backend/middleware/version_context.ts",
"./src/backend/providers/story_provider.ts"
],
"outDir": "./dist/backend",
"clean": true,
"format": "esm",
"dts": false,
"sourcemap": true,
"target": "esnext"
},
"other": {}
}