-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.44 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@newtelco/reception",
"version": "0.0.1",
"description": "Reception Static Video Dashboard",
"author": {
"email": "[email protected]",
"name": "Nico Domino @ndom91"
},
"homepage": "https://ndo.dev/",
"license": "MIT",
"keywords": [
"video",
"dashboard",
"ffmpeg",
"astro",
"svelte"
],
"repository": "https://github.com/newtelco/empfang-dashboard.git",
"bugs": "https://github.com/newtelco/empfang-dashboard/issues",
"scripts": {
"dev": "astro dev --port 3005",
"build": "astro build"
},
"dependencies": {
"@astrojs/renderer-svelte": "^0.1.1"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"astro": "^0.17.3",
"autoprefixer": "^10.3.1",
"eslint": "^7.31.0",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"simple-git-hooks": "^2.5.1",
"tailwindcss": "^2.2.7"
},
"prettier": {
"semi": false
},
"eslintConfig": {
"extends": "next",
"overrides": [
{
"files": [
"**/api/**/*.[jt]s"
],
"rules": {
"import/no-anonymous-default-export": [
"warn",
{
"allowArrowFunction": true
}
]
}
}
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"simple-git-hooks": {
"pre-commit": "npx --no-install commitlint --edit \"$1\""
}
}