forked from microsoft/workshop-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 886 Bytes
/
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
{
"name": "repose",
"version": "0.0.1",
"description": "A mood tracker and daily journal app",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"start": "npm run build && vite preview",
"start-remote": "vite --host"
},
"author": "",
"license": "ISC",
"dependencies": {
"@pwabuilder/pwainstall": "^1.6.7",
"@vaadin/router": "^1.7.4",
"lit": "^2.2.1",
"workbox-build": "^6.5.2",
"workbox-core": "^6.5.2",
"workbox-precaching": "^6.5.2"
},
"devDependencies": {
"typescript": "^4.6.3",
"vite": "^2.9.1",
"vite-plugin-pwa": "^0.11.13",
"localforage": "^1.10.0"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "es5",
"endOfLine": "crlf",
"bracketSpacing": true
}
}