forked from rilldata/rill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
136 lines (136 loc) · 4.6 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@rilldata/rill",
"version": "0.7.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": "node build-tools/post_install.cjs",
"postinstall:dev": "ts-node-dev --quiet --project tsconfig.node.json src/cli/post-install.ts",
"postinstall:prod": "node dist/cli/post-install.js",
"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",
"build-vercel-pkg": "node dist/cli/build-vercel-pkg.js"
},
"devDependencies": {
"@adityahegde/typescript-test-utils": "^1.3.2",
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@playwright/test": "^1.20.1",
"@reduxjs/toolkit": "^1.8.2",
"@rollup/plugin-typescript": "^8.3.1",
"@sveltejs/adapter-auto": "next",
"@sveltejs/adapter-static": "^1.0.0-next.34",
"@sveltejs/kit": "^1.0.0-next.355",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/svelte": "^3.1.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/redux-logger": "^3.0.9",
"@types/sinon": "^10.0.11",
"@types/supertest": "^2.0.12",
"@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",
"d3-array": "^3.1.1",
"d3-interpolate": "^3.0.1",
"d3-scale": "^4.0.2",
"esbuild": "^0.14.48",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^3.4.1",
"jest": "^27.5.1",
"parquetjs": "^0.11.2",
"pkg": "^5.7.0",
"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",
"supertest": "^6.2.4",
"svelte-check": "^2.8.0",
"svelte-jester": "^2.3.2",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.0.23",
"terminate": "^2.5.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.8.1",
"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/autocomplete": "^0.20.0",
"@codemirror/commands": "^0.20.0",
"@codemirror/lang-sql": "^0.20.2",
"@codemirror/language": "^0.20.0",
"@codemirror/lint": "^0.20.0",
"@codemirror/search": "^0.20.0",
"@codemirror/state": "^0.20.0",
"@codemirror/view": "^0.20.0",
"@types/d3-scale": "^4.0.2",
"@types/d3-shape": "^3.1.0",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"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.4.0",
"express": "^4.17.3",
"express-fileupload": "^1.3.1",
"glob": "^7.2.0",
"immer": "^9.0.12",
"module-alias": "^2.2.2",
"pgsql-ast-parser": "^10.3.1",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"svelte": "^3.48.0"
},
"bin": {
"rill": "./dist/cli/data-modeler-cli.js"
},
"files": [
"dist",
"build-tools/post_install.cjs",
"build",
"static",
"package.json",
"package-lock.json",
"LICENSE.md",
"README.md"
],
"pkg": {
"scripts": "dist/**/*.js",
"assets": [
"node_modules/**/*",
"build/**/*",
"package.json"
]
}
}