-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 839 Bytes
/
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
{
"name": "ajcrites-reading-list",
"version": "0.0.0",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc --noEmit && tslint --project . && scripts/check-unique-urls.sh"
}
},
"lint-staged": {
"README.md": [
"prettier --write",
"git add"
],
"src/**/*.ts": [
"prettier --write --parser typescript --single-quote --trailing-comma all",
"tslint --fix",
"git add"
]
},
"devDependencies": {
"husky": "^1.1.4",
"lint-staged": "^8.0.5",
"prettier": "^1.15.2",
"scutage": "^0.0.6",
"ts-config-mobiquity-server": "^4.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"dependencies": {
"jsdom": "^13.0.0",
"markdown-it": "^8.4.2",
"markdown-it-task-lists": "^2.1.1",
"mkdirp-promise": "^5.0.1"
}
}