-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
81 lines (81 loc) · 2.65 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
81
{
"name": "washingcode",
"private": true,
"author": {
"name": "Artem Sapegin",
"url": "https://sapegin.me"
},
"homepage": "https://github.com/sapegin/washingcode",
"repository": "sapegin/washingcode",
"license": "CC BY-NC-ND 4.0",
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "npm run lint:js && npm run lint:text && npm run lint:spell && npm run lint:book",
"lint:js": "eslint . --cache --fix",
"lint:text": "textlint \"manuscript/**/*.md\"",
"lint:spell": "cspell \"manuscript/**/*.md\"",
"lint:typos": "command -v typos > /dev/null 2>&1 && typos 'manuscript'",
"lint:text:fix": "npm run lint:text -- --fix",
"lint:typos:fix": "typos 'manuscript' --write-changes",
"lint:book": "tsx scripts/lint.ts",
"format": "prettier --log-level warn --write \"**/*.{js,mjs,cjs,ts,tsx,css,json,md}\"",
"test": "vitest run",
"test:watch": "nodemon --watch 'manuscript' --ext md --exec 'vitest'",
"posttest": "npm run lint && npm run format",
"generate-books": "node generator/markua2gfm.mjs && generator/pandoc.sh",
"prepare": "husky"
},
"keywords": [],
"dependencies": {
"http-status-codes": "^2.3.0",
"immer": "10.1.1",
"immutable": "4.3.7",
"lodash": "4.17.21",
"react": "18.3.1",
"react-dom": "18.3.1",
"styled-components": "6.1.13"
},
"devDependencies": {
"@eslint/markdown": "^6.2.1",
"@testing-library/react": "^16.1.0",
"@textlint-rule/textlint-rule-no-unmatched-pair": "^2.0.4",
"@types/fs-extra": "^11.0.4",
"cspell": "^8.16.1",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"eslint-config-tamia": "^9.2.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"happy-dom": "^15.11.7",
"husky": "^9.1.7",
"install": "^0.13.0",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "3.4.2",
"remark": "^15.0.1",
"richtypo": "^7.0.1",
"textlint": "^14.4.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-alex": "^5.0.0",
"textlint-rule-alive-link": "^0.1.2",
"textlint-rule-apostrophe": "^2.0.0",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-diacritics": "^2.1.4",
"textlint-rule-doubled-spaces": "^1.0.2",
"textlint-rule-no-todo": "^2.0.1",
"textlint-rule-quotes": "^1.0.0",
"textlint-rule-stop-words": "^5.1.2",
"textlint-rule-terminology": "^5.2.12",
"textlint-rule-write-good": "^2.0.0",
"tsx": "^4.19.2",
"unist-util-visit": "^5.0.0",
"vitest": "^2.1.8",
"vm2": "^3.9.13"
},
"lint-staged": {
"*.{js,mjs,cjs,ts,tsx,css,json,md}": "prettier --write",
"*.{js,mjs,cjs,ts,tsx}": "eslint --cache --fix"
}
}