forked from daangn/stackflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.86 KB
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
{
"name": "@stackflow/demo",
"version": "0.11.0",
"private": true,
"license": "MIT",
"exports": {
".": {
"require": "./dist/stackflow.js",
"import": "./dist/stackflow.mjs"
},
"./stackflow.css": "./dist/stackflow.css"
},
"main": "./dist/stackflow.js",
"module": "./dist/stackflow.mjs",
"types": "./dist/stackflow.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "yarn build:js && yarn build:dts && yarn build:app",
"build:app": "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": "vite --host 0.0.0.0"
},
"dependencies": {
"@seed-design/design-token": "^1.0.0-alpha.0",
"@seed-design/stylesheet": "^1.0.0-alpha.0",
"@stackflow/basic-ui": "^0.11.0",
"@stackflow/compat-await-push": "^0.11.0",
"@stackflow/core": "^0.11.0",
"@stackflow/link": "^0.11.0",
"@stackflow/plugin-history-sync": "^0.11.0",
"@stackflow/plugin-preload": "^0.11.0",
"@stackflow/plugin-renderer-basic": "^0.11.0",
"@stackflow/react": "^0.11.0",
"lorem-ipsum": "^2.0.8",
"normalize.css": "^8.0.1",
"random-picture": "^4.0.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-lazy-load-image-component": "^1.5.4",
"vite": "^2.9.9"
},
"devDependencies": {
"@stackflow/esbuild-config": "^0.11.0",
"@types/react": "^18.0.10",
"@types/react-dom": "^18.0.5",
"@types/react-lazy-load-image-component": "^1.5.2",
"@vanilla-extract/css": "^1.7.2",
"@vanilla-extract/vite-plugin": "^3.2.1",
"@vitejs/plugin-react": "^1.3.2",
"esbuild": "^0.14.51",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"ultra": {
"concurrent": [
"dev",
"build"
]
}
}