forked from sabertazimi/awesome-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.4 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "awesome-notes",
"version": "3.9.0",
"description": "Personal Learning Notes (TIL)",
"keywords": [
"CS",
"Notes",
"Docusaurus",
"GitBook",
"HTML",
"CSS",
"JavaScript",
"TypeScript",
"React",
"Web",
"TIL"
],
"license": "MIT",
"author": "sabertazimi",
"repository": {
"type": "git",
"url": "git+https://github.com/sabertazimi/awesome-notes.git"
},
"main": "README.md",
"scripts": {
"build": "docusaurus build",
"clear": "docusaurus clear",
"dev": "docusaurus start",
"format": "prettier --write notes/**/*.{md,mdx}",
"lint": "yarn lint:notes && yarn lint:style && yarn lint:type-check && yarn lint:format",
"lint:notes": "eslint ./notes && stylelint ./notes/**/*.md && markdownlint ./notes",
"lint:style": "eslint --ext .ts,.tsx ./src && stylelint ./src/**/*.css",
"lint:type-check": "tsc --noEmit",
"lint:format": "prettier --check notes/**/*.{md,mdx}",
"lint:fix": "yarn lint:notes:fix && yarn lint:style:fix && yarn format",
"lint:notes:fix": "eslint ./notes --fix && stylelint ./notes/**/*.md --fix && markdownlint ./notes --fix",
"lint:style:fix": "eslint --ext .ts,.tsx ./src --fix && stylelint ./src/**/*.css --fix",
"changeset": "standard-version --dry-run -s",
"release": "standard-version -s",
"serve": "docusaurus serve",
"start": "yarn dev"
},
"bugs": {
"url": "https://github.com/sabertazimi/awesome-notes/issues"
},
"homepage": "https://github.com/sabertazimi/awesome-notes#readme",
"packageManager": "yarn@3.2.1",
"dependencies": {
"@docusaurus/core": "2.0.0-beta.20",
"@docusaurus/preset-classic": "2.0.0-beta.20",
"@easyops-cn/docusaurus-search-local": "^0.25.0",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@dg-scripts/eslint-config": "^5.10.0",
"@dg-scripts/stylelint-config": "^5.10.0",
"@docusaurus/module-type-aliases": "2.0.0-beta.20",
"@tsconfig/docusaurus": "^1.0.5",
"ci-info": "^3.3.1",
"eslint": "^8.16.0",
"markdownlint-cli": "^0.31.1",
"prettier": "^2.6.2",
"standard-version": "^9.3.2",
"stylelint": "^14.8.3",
"typescript": "^4.6.4"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}