-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.65 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": "svelte-app",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sudo sirv public --no-clear --port 8000 --host",
"check": "svelte-check --tsconfig ./tsconfig.json",
"mobile": "yarn build && cap sync",
"ios": "yarn mobile && cap open ios",
"public": "yarn build && yarn start --host",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ."
},
"devDependencies": {
"@capacitor/cli": "latest",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-typescript": "^8.0.0",
"@tsconfig/svelte": "^2.0.0",
"autoprefixer": "^10.4.7",
"daisyui": "^2.15.0",
"postcss": "^8.4.13",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"svelte": "^3.0.0",
"svelte-check": "^2.0.0",
"svelte-preprocess": "^4.0.0",
"tailwindcss": "^3.0.24",
"tslib": "^2.0.0",
"typescript": "^4.0.0"
},
"dependencies": {
"@capacitor/camera": "latest",
"@capacitor/core": "latest",
"@capacitor/ios": "^3.5.1",
"@capacitor/splash-screen": "latest",
"@lukeed/uuid": "^2.0.0",
"prettier": "^2.7.1",
"sirv": "^2.0.2",
"sirv-cli": "^2.0.0"
}
}