forked from sirixdb/sirix-svelte-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.76 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
{
"name": "sirix-svelte-frontend",
"description": "SirixDB Console",
"version": "0.0.1",
"scripts": {
"dev": "sapper dev",
"build:sapper": "npm run build-prod:tailwind && sapper build --legacy",
"export": "set NODE_ENV=production && sapper export __sapper__/export --entry /databases",
"start": "node __sapper__/build",
"cy:run": "cypress run",
"cy:open": "cypress open",
"tauri": "tauri",
"build:tauri": "tauri build",
"test": "run-p --race dev cy:run",
"watch:tailwind": "postcss ./tailwind.css -o static/index.css -w",
"build:tailwind": "postcss ./tailwind.css -o static/index.css",
"build-prod:tailwind": "set NODE_ENV=production && postcss ./tailwind.css -o static/index.css"
},
"dependencies": {
"@types/express": "^4.17.6",
"@types/node": "^13.13.4",
"compression": "^1.7.1",
"polka": "next",
"sirix": "github:sirixdb/sirix-typescript-client",
"sirv": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/runtime": "^7.9.2",
"@fullhuman/postcss-purgecss": "^2.1.2",
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.2",
"@wessberg/rollup-plugin-ts": "^1.2.24",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.1",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-svelte": "^5.2.1",
"rollup-plugin-terser": "^5.3.0",
"sapper": "^0.27.12",
"svelte": "^3.21.0",
"svelte-preprocess": "^3.7.4",
"tailwindcss": "^1.4.0",
"tauri": "^0.5.2",
"typescript": "^3.8.3"
}
}