-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "weekly-planner",
"version": "1.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xeptore/weekly-planner.git"
},
"author": "xeptore <xeptore@gmail.com>",
"devDependencies": {
"@babel/core": "^7.5.5",
"babel-eslint": "^10.0.3",
"eslint": "^6.2.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-svelte3": "^2.7.3",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"rollup": "^1.20.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-terser": "^5.1.1",
"serve": "^11.0.0",
"svelte": "^3.9.1",
"uuid": "^3.3.3",
"ws": "^7.4.6"
},
"dependencies": {
"sirv-cli": "^0.4.4"
},
"scripts": {
"build": "rollup -c",
"dev": "run-p start:dev autobuild",
"autobuild": "rollup -c -w",
"start": "sirv public --single",
"start:dev": "sirv public --single --dev"
}
}