-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "@electron/history",
"private": true,
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@electron/github-app-auth": "^1.2.0",
"@octokit/rest": "^18.3.5",
"diff": "^5.1.0",
"dompurify": "^3.1.3",
"expiry-map": "^2.0.0",
"express": "^4.21.1",
"express-handlebars": "^5.2.0",
"express-paginate": "^1.0.2",
"jsdom": "^23.0.1",
"markdown-it": "^12.1.0",
"p-memoize": "^4.0.1",
"prismjs": "^1.29.0",
"semver": "^7.5.2",
"time-ago": "^0.2.1"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.2.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write"
],
"src/**/*.css": [
"prettier --write"
]
},
"scripts": {
"watch": "nodemon --watch src --ext js,css,handlebars --exec \"npm run start\"",
"start": "node src/index.js",
"lint": "prettier --check \"src/**/*.js\" \"src/**/*.css\"",
"prettier:write": "prettier --write \"src/**/*.js\" \"src/**/*.css\"",
"postinstall": "cp node_modules/prismjs/themes/*.css src/static/css/prismjs",
"prepare": "husky"
}
}