-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.61 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
68
69
70
71
72
73
{
"name": "gldash",
"version": "0.0.0-sr",
"description": "GitLab Jobs dashboard",
"main": "",
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html",
"now-build": "parcel build src/index.html",
"release": "npx semantic-release@beta",
"format": "npx prettier --write **/*.{ts,tsx,md,json,html}"
},
"keywords": [
"gitlab",
"dashboard",
"jobs",
"pipelines",
"monitoring",
"tv",
"control",
"panel"
],
"author": "Ricardo Casares (https://analogic.al)",
"license": "MIT",
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.10",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"s-ago": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@types/node": "^11.13.5",
"@types/react": "^16.8.13",
"@types/react-dom": "^16.8.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"parcel-bundler": "^1.12.3",
"typescript": "^3.4.4"
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"homepage": "https://github.com/ricardocasares/gldash#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ricardocasares/gldash.git"
},
"release": {
"plugins": [
"@semantic-release/github",
"@semantic-release/release-notes-generator"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"npm run prettier",
"git add"
]
},
"bugs": {
"url": "https://github.com/ricardocasares/gldash/issues"
}
}