forked from timschwab/cheatsheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.17 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
{
"name": "cheatsheet",
"version": "1.3.2",
"description": "A knowledge base for short snippets",
"main": "src/main.js",
"scripts": {
"postinstall": "node ./scripts/post-install.js",
"build": "webpack",
"start": "electron ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/timschwab/cheatsheet.git"
},
"keywords": [
"cheatsheet"
],
"author": "Tim Schwab",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/timschwab/cheatsheet/issues"
},
"homepage": "https://github.com/timschwab/cheatsheet#readme",
"dependencies": {
"bluebird": "^3.7.1",
"bootstrap": "^4.3.1",
"jquery": "^3.5.0",
"marked": "^0.7.0",
"popper.js": "^1.16.0",
"redis": "^2.8.0",
"vue": "^2.6.10"
},
"devDependencies": {
"css-loader": "^3.2.0",
"electron": "^7.2.4",
"husky": "^1.3.1",
"lint-staged": "^8.2.1",
"prettier": "^1.19.1",
"vue-loader": "^15.7.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js, json, css, html, vue}": [
"prettier --write",
"git add"
]
}
}