-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.1 KB
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
{
"private": true,
"name": "notify_frontend",
"version": "0.0.0",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "preact build --no-prerender",
"serve": "sirv build --port 8080 --cors --single",
"dev": "preact watch --port 8000 --sw",
"dev_gui": "preact watch",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"test": "jest ./tests"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"preact",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"build/"
]
},
"dependencies": {
"idb": "^7.1.1",
"preact": "^10.18.1",
"preact-material-components": "^1.6.1",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.52.0",
"eslint-config-preact": "^1.1.1",
"preact-cli": "^3.5.0",
"sirv-cli": "^2.0.2",
"typescript": "^4.6.4"
}
}