forked from rilldata/rill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.88 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@rilldata/rill",
"version": "0.2.0",
"type": "module",
"scripts": {
"dev": "ts-node-dev --quiet --project tsconfig.node.json src/dev.ts",
"build": "svelte-kit build && tsc --project tsconfig.node.json",
"prepack": "./build-tools/replace_package_type.sh module commonjs",
"postpack": "./build-tools/replace_package_type.sh commonjs module",
"postinstall": "./build-tools/post_install.sh",
"install-and-build": "npm install && npm run build",
"package": "svelte-kit package",
"preview": "svelte-kit preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"duckdb": "node ./server/server.duckdb.js",
"dev:ui": "svelte-kit dev",
"dev:backend": "ts-node-dev --project tsconfig.node.json -- src/server/server.ts",
"test": "npm run test:backend; npm run test:ui",
"test:backend": "jest --testPathIgnorePatterns test/ui",
"test:ui": "jest --detectOpenHandles test/ui",
"test:watch": "npm run test -- --watch",
"generate-test-data": "ts-node-dev --project tsconfig.node.json -- test/data/generator/generate-data.ts",
"cli": "ts-node-dev --quiet --project tsconfig.node.json -- src/cli/data-modeler-cli.ts",
"bump-version": "ts-node-dev --quiet --project tsconfig.node.json -- src/cli/bump-version.ts",
"manual-publish": "./build-tools/npm_publish.sh"
},
"devDependencies": {
"@adityahegde/typescript-test-utils": "^1.3.2",
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@playwright/test": "^1.20.1",
"@rollup/plugin-typescript": "^8.3.1",
"@sveltejs/adapter-auto": "next",
"@sveltejs/adapter-static": "^1.0.0-next.22",
"@sveltejs/kit": "next",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/svelte": "^3.1.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/sinon": "^10.0.11",
"@types/testing-library__jest-dom": "^5.14.3",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"autoprefixer": "^10.4.4",
"babel-jest": "^27.5.1",
"d3-array": "^3.1.1",
"d3-scale": "^4.0.2",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^3.4.1",
"jest": "^27.5.1",
"parquetjs": "^0.11.2",
"playwright": "^1.20.1",
"postcss-load-config": "^3.1.3",
"prettier": "^2.6.1",
"prettier-plugin-svelte": "^2.6.0",
"semver": "^7.3.7",
"should": "^13.2.3",
"sinon": "^13.0.1",
"svelte-check": "^2.4.6",
"svelte-jester": "^2.3.2",
"svelte-preprocess": "^4.10.4",
"tailwindcss": "^3.0.23",
"terminate": "^2.5.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"tslib": "^2.3.1",
"typescript": "^4.6.3",
"ua-parser-js": "^1.0.2",
"workerpool": "^6.2.0"
},
"dependencies": {
"@codemirror/basic-setup": "^0.19.1",
"@codemirror/lang-sql": "^0.19.4",
"@codemirror/state": "^0.19.9",
"@codemirror/view": "^0.19.47",
"axios": "^0.26.1",
"commander": "^9.1.0",
"cors": "^2.8.5",
"d3-format": "^3.1.0",
"d3-shape": "^3.1.0",
"d3-time": "^3.0.0",
"d3-time-format": "^4.1.0",
"duckdb": "0.3.2",
"express": "^4.17.3",
"express-fileupload": "^1.3.1",
"glob": "^7.2.0",
"immer": "^9.0.12",
"js-sql-parser": "^1.4.1",
"js-yaml": "^4.1.0",
"module-alias": "^2.2.2",
"pgsql-ast-parser": "^10.0.2",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"svelte": "^3.46.4"
},
"bin": {
"rill": "./dist/cli/data-modeler-cli.js"
},
"files": [
"dist",
"build-tools/post_install.sh",
"build",
"static",
"package.json",
"package-lock.json",
"LICENSE.md",
"README.md"
]
}