-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 2.19 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
{
"name": "sirix-svelte-frontend",
"description": "SirixDB Console",
"version": "0.0.1",
"scripts": {
"dev": "sapper dev",
"dev-for-tauri": "set TAURI=1 && sapper dev",
"export": "npm run build-prod:tailwind && set NODE_ENV=production && sapper export __sapper__/export --legacy --entry /resources",
"export:tauri": "set TAURI=1 && npm run build-prod:tailwind && set NODE_ENV=production && sapper export __sapper__/export --legacy --entry /resources",
"dev:tauri": "tauri dev",
"build:tauri": "tauri build",
"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": {
"compression": "^1.7.4",
"highlight.js": "^10.7.2",
"idb": "^6.1.2",
"polka": "next",
"sirixdb": "^0.2.9",
"sirv": "^1.0.12",
"tauri": "^0.14.1"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/runtime": "^7.13.17",
"@fullhuman/postcss-purgecss": "^4.0.3",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.1",
"@tsconfig/svelte": "^2.0.1",
"@types/express": "^4.17.11",
"@types/node": "^15.12.1",
"esbuild": "^0.12.6",
"npm-run-all": "^4.1.5",
"postcss": "8.3.0",
"postcss-cli": "^8.3.1",
"renderless-svelte": "^1.7.0",
"rollup": "^2.52.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"sapper": "^0.29.1",
"svelte": "^3.49.0",
"svelte-preprocess-esbuild": "^2.0.0",
"svelte-progresscircle": "^0.3.0",
"tailwindcss": "2.1.4",
"typescript": "^4.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/sirixdb/sirix-svelte-front-end"
}
}