-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.94 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
{
"name": "draft-whitepaper",
"version": "1.0.0",
"description": "CureDAO is a decentralized alliance of individuals, government, businesses, and nonprofits devoted to the minimization of suffering.",
"main": "index.js",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run checkLoggedIn && npm run lint && npm run test",
"build": "",
"prettier": "prettier --write .",
"lint": "prettier --check . && eslint . --ext .ts && cspell '**/*' ",
"test": "ava",
"link-checker": "git ls-files | grep md$ | xargs -n 1 markdown-link-check -c .markdown-link-check.json",
"prebuild": "npm run clean",
"clean": "rm -rf ./build",
"checkLoggedIn": "./scripts/verifyLoggedIn.sh",
"mega-lint-fix": "mega-linter-runner --fix",
"mega-lint": "mega-linter-runner",
"gitbook-summary": "book sm"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@notionhq/client": "^0.4.12",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"cspell": "^5.4.1",
"dictionary-en": "^3.1.0",
"eslint": "^7.24.0",
"gitbook-summary": "^1.2.4",
"markdown-link-check": "^3.8.7",
"mega-linter-runner": "^5.7.1",
"mocha": "^9.1.3",
"prettier": "^2.3.0",
"textlint": "^12.0.2",
"textlint-filter-rule-allowlist": "^3.0.0",
"textlint-rule-alex": "^3.0.0",
"textlint-rule-common-misspellings": "1.0.1",
"textlint-rule-en-capitalization": "2.0.3",
"textlint-rule-en-max-word-count": "^1.1.0",
"textlint-rule-no-empty-section": "1.1.0",
"textlint-rule-no-exclamation-question-mark": "1.1.0",
"textlint-rule-one-sentence-per-line": "^2.0.0",
"textlint-rule-period-in-list-item": "0.3.2",
"textlint-rule-rousseau": "1.4.6",
"textlint-rule-spelling": "0.3.0",
"textlint-rule-terminology": "2.1.5",
"textlint-rule-write-good": "^2.0.0",
"typescript": "^4.2.4",
"write-good": "^1.0.8"
}
}