-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.64 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
{
"name": "@beyonk/svelte-scheduler",
"version": "0.0.10",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/runtime": "^7.9.6",
"@beyonk/eslint-config": "^4.0.1",
"@rollup/plugin-alias": "^3.1.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.3",
"autoprefixer": "^9.7.6",
"config": "^3.3.1",
"core-js": "^3.6.5",
"cross-env": "^6.0.3",
"eslint": "^6.8.0",
"eslint-plugin-svelte3": "^2.7.3",
"nollup": "^0.10.8",
"rollup": "^1.31.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-hot": "^0.0.14",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-postcss": "^2.9.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-svelte-hot": "^0.5.0",
"rollup-plugin-svg": "^2.0.0",
"sass": "^1.26.5",
"sirv-cli": "^0.4.5",
"svelte": "^3.22.2",
"svelte-preprocess": "^3.7.4"
},
"dependencies": {
"svelte-feather-icons": "^3.2.2"
},
"svelte": "src/Scheduler.svelte",
"scripts": {
"build": "NODE_CONFIG_DIR=../config rollup -c",
"dev:rollup": "NODE_CONFIG_DIR=../config rollup -c -w",
"dev:livereload": "cross-env NODE_CONFIG_DIR=../config LIVERELOAD=1 rollup -c -w",
"dev:nollup": "cross-env NODE_CONFIG_DIR=../config NOLLUP=1 nollup -c --hot --port 5000 --content-base ./public",
"dev": "NODE_CONFIG_DIR=../config npm run dev:rollup",
"start": "sirv --host 0.0.0.0 public",
"lint": "eslint src --ext .js,.svelte"
}
}