-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 2.01 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
{
"name": "osd_ssg",
"version": "1.1.0",
"description": "Static site generator cli",
"main": "./lib/index.js",
"bin": {
"osd_ssg": "./lib/index.js"
},
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"test": "npx jest --verbose --",
"test:watch": "npx jest jest --watch --",
"coverage": "npx jest --collectCoverage --",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"lint": "npm run eslint --fix \"src/**/*.ts\" \"e2e/**/*.ts\"",
"eslint": "eslint --fix --max-warnings 0",
"prettier": "prettier --write \"src/**/*.{md,jsx,tsx,ts,json,html,css,js,yml}\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DukeManh/OSD_SSG.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/DukeManh/OSD_SSG/issues"
},
"homepage": "https://github.com/DukeManh/OSD_SSG#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.12",
"@types/jest": "^27.0.2",
"@types/jsdom": "^16.2.13",
"@types/markdown-it": "^12.2.3",
"@types/node": "^16.7.13",
"@types/prettier": "^2.4.1",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"execa": "^5.1.1",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jsdom": "^18.0.1",
"nodemon": "^2.0.12",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.2"
},
"dependencies": {
"commander": "^8.2.0",
"fs-extra": "^10.0.0",
"highlight.js": "^11.3.1",
"markdown-it": "^12.2.0",
"prettier": "^2.4.1",
"yargs": "^17.1.1"
}
}