-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.45 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
49
{
"name": "life365",
"version": "8.2.0",
"description": "life365",
"private": true,
"source": "src/index.html",
"browserslist": "defaults",
"scripts": {
"update": "ncu -u",
"serve": "rm -rf dist && parcel -p 8000",
"watch": "parcel watch",
"build": "rm -rf dist && rm -rf docs && parcel build --no-source-maps --dist-dir docs --public-url=/life365"
},
"author": "Luca Bacchi <[email protected]> (http://www.lucabacchi.it)",
"license": "ISC",
"prettier": {
"arrowParens": "always",
"bracketSpacing": false,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 120,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false,
"vueIndentScriptAndStyle": false
},
"devDependencies": {
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"npm-check-updates": "^16.5.0",
"parcel": "^2.8.0",
"process": "^0.11.10"
},
"dependencies": {
"localforage": "^1.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.4",
"swr": "^1.3.0"
}
}