-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathpackage.json
75 lines (75 loc) · 2.28 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
{
"name": "@stackflow/demo",
"version": "1.4.0",
"private": true,
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/stackflow/stackflow.docs.d.ts",
"require": "./dist/stackflow/stackflow.docs.js",
"import": "./dist/stackflow/stackflow.docs.mjs"
},
"./style.css": "./dist/stackflow/stackflow.docs.css"
},
"main": "./dist/stackflow/stackflow.docs.js",
"module": "./dist/stackflow/stackflow.docs.mjs",
"types": "./dist/stackflow/stackflow.docs.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "yarn build:js && yarn build:dts && yarn build:app",
"build:app": "yarn vite build",
"build:dts": "tsc --emitDeclarationOnly",
"build:js": "node ./esbuild.config.js",
"clean": "rimraf dist && rimraf build",
"dev": "yarn dev:app && yarn build:js --watch && yarn build:dts --watch",
"dev:app": "yarn vite --host 0.0.0.0",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@seed-design/design-token": "^1.0.3",
"@seed-design/stylesheet": "^1.0.4",
"@stackflow/compat-await-push": "^1.1.13",
"@stackflow/config": "^1.2.0",
"@stackflow/core": "^1.1.0",
"@stackflow/link": "^1.5.0",
"@stackflow/plugin-basic-ui": "^1.9.2",
"@stackflow/plugin-devtools": "^0.1.11",
"@stackflow/plugin-history-sync": "^1.7.0",
"@stackflow/plugin-map-initial-activity": "^1.0.11",
"@stackflow/plugin-preload": "^1.4.3",
"@stackflow/plugin-renderer-basic": "^1.1.13",
"@stackflow/plugin-stack-depth-change": "^1.1.5",
"@stackflow/react": "^1.4.0",
"lorem-ipsum": "^2.0.8",
"lz-string": "^1.5.0",
"normalize.css": "^8.0.1",
"random-picture": "^4.0.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-lazy-load-image-component": "^1.6.2",
"vite": "^5.3.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@stackflow/esbuild-config": "^1.0.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-lazy-load-image-component": "^1.6.4",
"@vanilla-extract/css": "^1.15.3",
"@vanilla-extract/vite-plugin": "^4.0.12",
"@vitejs/plugin-react": "^4.3.1",
"esbuild": "^0.23.0",
"rimraf": "^3.0.2",
"typescript": "^5.5.3"
},
"ultra": {
"concurrent": [
"dev",
"build"
]
}
}