-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.56 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": "ts_ssg",
"version": "1.0.1",
"description": "Static Site Generator using ts",
"main": "./lib/index.js",
"bin": {
"ts_ssg": "./lib/index.js"
},
"scripts": {
"prettier": "prettier --write --ignore-path .prettierignore .",
"prettier-check": "prettier --check \"src/**/*.{md,jsx,json,html,css,js,yml}\"",
"lint": "npm run eslint \"src/**/*.ts\"",
"pretty-quick": "npm run lint && npm run prettier",
"eslint": "eslint --max-warnings 0",
"prepare": "husky install",
"test": "npx jest --verbose --",
"test:watch": "npx jest jest --watch --",
"coverage": "npx jest --collectCoverage --",
"build": "tsc -p ."
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"author": "Phuoc Mai",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^9.0.12",
"@types/jest": "^27.0.2",
"@types/node": "^16.7.13",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"nodemon": "^2.0.12",
"prettier": "2.4.1",
"pretty-quick": "^3.1.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.2.1",
"typescript": "^4.4.4"
},
"dependencies": {
"chalk": "^3.0.0",
"commander": "^8.2.0",
"fs-extra": "^10.0.0",
"markdown-it": "^12.2.0",
"yargs": "^17.1.1"
}
}