-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
69 lines (68 loc) · 2.51 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
{
"name": "freon4dsl",
"private": true,
"scripts": {
"rebuild": "npm run clean && npm install && npm run build && npm run test",
"rebuild-dev": "npm run clean && npm install && npm run build-dev",
"clean": "rm -f package-lock.json && rm -rf node_modules/ && npm run clean --workspaces --if-present",
"start": "npm run start --stream --parallel",
"build": "npm run build --workspaces --if-present",
"build-dev": "npm run build-dev --workspaces --if-present",
"build-release": "npm run build-release --workspaces --if-present",
"publish-local": "npm run publish-local --workspaces --if-present",
"unpublish-local": "npm run unpublish-local --workspaces --if-present",
"republish-local": "npm run unpublish-local && npm run publish-local",
"install-local": "npm install --registry http://localhost:4873",
"lint": "npm run lint --workspaces --if-present",
"setup": "npm run setup --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"prettier": "prettier --write --print-width 120 --tab-width 4 packages/*/src/**/*.ts packages/*/src/**/*.tsx packages/*/src/**/*.css"
},
"devDependencies": {
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "11.1.6",
"@tsconfig/svelte": "5.0.4",
"@types/koa": "2.0.48",
"@types/koa-bodyparser": "4.2.2",
"@types/koa-router": "7.0.40",
"@types/koa2-cors": "2.0.1",
"@types/lodash": "4.17.4",
"@types/node": "20.14.1",
"@types/pegjs": "0.10.6",
"cross-env": "7.0.3",
"identity-obj-proxy": "3.0.0",
"nodemon": "3.1.3",
"pegjs": "0.10.0",
"@prettier/sync": "^0.5.2",
"prettier-plugin-svelte": "^3.2.3",
"reflect-metadata": "0.2.2",
"rollup": "4.18.0",
"rollup-plugin-auto-external": "2.0.0",
"rollup-plugin-css-only": "4.5.2",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-livereload": "2.0.5",
"rollup-plugin-polyfill-node": "0.13.0",
"rollup-plugin-svelte": "^7.2.0",
"@rollup/plugin-terser": "0.4.4",
"svelte": "< 5.0.0",
"svelte-check": "^3.8.0",
"svelte-preprocess": "5.1.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "5.4.5",
"typescript-svelte-plugin": "0.3.38",
"@vitest/ui": "^2.1.0"
},
"workspaces": [
"packages/core",
"packages/core-svelte",
"packages/meta",
"packages/webapp-lib",
"packages/samples/*",
"packages/webapp-starter",
"packages/server",
"packages/test"
],
"version": "1.0.0-beta1"
}