forked from greatvivek11/TodoApp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
50
51
52
53
54
{
"name": "preact-ts-offline-first",
"version": "0.8.0",
"repository": "https://github.com/st-ax/preact-ts-offline-first",
"license": "CC-BY-NC-4.0",
"scripts": {
"dev": "vite",
"tsc": "tsc -p . --noEmit",
"build": "cross-env NODE_ENV=production vite build",
"lint": "eslint src/**/*.ts[x] --fix",
"clean": "rm -rf .cache .tmp lib build"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.4.1",
"@mui/material": "^5.4.1",
"dexie": "^3.2.0",
"dexie-observable": "^3.0.0-beta.11",
"dexie-react-hooks": "^1.1.1",
"dexie-syncable": "^3.0.0-beta.10",
"lodash": "^4.17.21",
"mdi-preact": "^8.1.0",
"mui-image": "^1.0.4",
"preact": "^10.6.5"
},
"devDependencies": {
"@prefresh/vite": "^2.2.6",
"@types/node": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"eslint": "^8.8.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"jest": "^27.5.1",
"typescript": "^4.5.5",
"vite": "^2.8.1",
"vite-plugin-pwa": "^0.11.13",
"vite-plugin-windicss": "^1.7.0",
"windicss": "^3.4.3"
},
"peerDependencies": {
"postcss": "^8.1.10"
},
"resolutions": {
"postcss": "8.1.10"
}
}