-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.98 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.98 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
{
"name": "@freon4dsl/samples-scoping-example",
"version": "2.0.0-beta.5",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"generate": "freon -v all -d src/defs -o src/freon",
"build-app": "vite build",
"build": "npm run generate && tsc",
"dev": "vite",
"preview": "vite preview",
"start": "sirv public --port 8000",
"validate": "svelte-check",
"errors-only": "svelte-check --threshold error",
"clean": "rm -rf node_modules/",
"clean-gen": "freon clean-it -d src/defs -o src/freon",
"clean-config": "rm src/*/config/FreonConfiguration.ts",
"clean-custom": "rm src/*/*/Custom*.ts",
"clean-index": "rm src/*/*/index.ts",
"clean-all": "npm run clean-gen && npm run clean-config && npm run clean-custom && npm run clean-index",
"server": "node ./node_modules/@freon4dsl/server/dist/server/server-starter.js",
"styles": "cross-env NODE_ENV=production npx @tailwindcss/cli -i styles/webapp-styles.css -o ./public/site.css"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^5.1.0",
"@tailwindcss/cli": "^4.1.10",
"@tailwindcss/vite": "^4.1.10",
"@tsconfig/svelte": "^5.0.4",
"@lucide/svelte": "^0.545.0",
"bits-ui": "^2.11.4",
"cross-env": "7.0.3",
"svelte-check": "^4.1.5",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^4.1.4",
"typescript": "^5.8.2",
"vite": "^6.3.5"
},
"dependencies": {
"@freon4dsl/core": "2.0.0-beta.5",
"@freon4dsl/core-svelte": "2.0.0-beta.5",
"@freon4dsl/meta": "2.0.0-beta.5",
"@freon4dsl/server": "2.0.0-beta.5",
"@freon4dsl/weblib-flowbite": "2.0.0-beta.5",
"@types/node": "^20.14.1",
"kotlin": "^1.5.21",
"lodash": "^4.17.21",
"mobx": "^6.12.3",
"mobx-utils": "^6.0.8",
"net.akehurst.language-agl-processor": "4.2.1-20-RC2",
"sirv-cli": "^2.0.2",
"svelte": "^5.39.6",
"typescript": "^5.6.2",
"tslib": "^2.6.2"
}
}