-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.79 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": "flytax",
"version": "1.3.11",
"type": "module",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"dev2": "rollup -c -w --environment SERVE:start2",
"dev3": "rollup -c -w --environment SERVE:start2,DISABLE_LIVERELOAD",
"dev4": "rollup -c -w --environment SERVE:start2,DEBUG_WORKBOX",
"test": "node --experimental-vm-modules --no-warnings node_modules/.bin/jest test",
"watchTest": "node --experimental-vm-modules --no-warnings node_modules/.bin/jest test --watchAll",
"start": "sirv public --port 5001",
"start2": "sirv public --http2 --key localhost-key.pem --cert localhost-cert.pem --host 0.0.0.0 --port 5001",
"clean": "rimraf public/**",
"makeAirports": "node scripts/makeAirports.js",
"makeData": "node scripts/makeData.js"
},
"devDependencies": {
"@open-wc/rollup-plugin-html": "^1.2.5",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"chalk": "^2.4.2",
"console-table-printer": "^2.7.5",
"dotenv": "^8.2.0",
"got": "^11.8.1",
"iconv-lite": "^0.4.24",
"jest": "^26.6.3",
"md-2-json": "^2.0.0",
"mustache": "^4.1.0",
"papaparse": "^5.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.3.4",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-css-only": "^3.0.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-watch-assets": "^1.0.1",
"rollup-plugin-workbox-inject": "^2.0.0",
"svelte": "^3.0.0",
"svelte-preprocess": "^4.6.1",
"svelte-preprocess-markdown": "^2.7.3",
"workbox-build": "^6.0.0",
"workbox-window": "^6.0.0"
},
"dependencies": {
"sirv-cli": "^1.0.0"
}
}