-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.36 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
{
"name": "habitcontrol",
"version": "0.1.0",
"license": "MIT",
"author": {
"name": "Anders Bech Mellson",
"email": "[email protected]",
"url": "https://github.com/mellson"
},
"repository": "github:mellson/habitcontrol",
"scripts": {
"watch:tailwind": "postcss public/tailwind.css -o public/index.css -w",
"build:tailwind": "NODE_ENV=production postcss public/tailwind.css -o public/index.css",
"autobuild": "rollup -c -w",
"dev": "run-p autobuild watch:tailwind",
"build": "npm run build:tailwind && rollup -c",
"start": "sirv public --single",
"start:dev": "sirv public --single --dev"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^5.0.2",
"@tsconfig/svelte": "^1.0.10",
"date-fns": "2.15.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.1",
"rollup": "^2.26.4",
"rollup-plugin-inject-process-env": "^1.3.0",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-svelte": "^5.2.3",
"rollup-plugin-terser": "^7.0.0",
"svelte": "^3.24.1",
"svelte-check": "^1.0.20",
"svelte-preprocess": "^4.1.1",
"tailwindcss": "^1.7.3",
"tslib": "^2.0.1",
"typescript": "^4.0.2",
"xstate": "4.12.0",
"xstate-svelte": "^1.0.0"
},
"dependencies": {
"sirv-cli": "^1.0.6"
}
}