This repository has been archived by the owner on Oct 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.7 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
{
"name": "math-ia",
"version": "0.0.0",
"description": "Math IA",
"license": "MIT",
"repository": "leonzalion/math-ia",
"author": {
"name": "Leon Si",
"email": "contact@leonzalion.com",
"url": "https://leonzalion.com"
},
"type": "module",
"scripts": {
"predict-word": "node-ts ./src/bin/predict-wpm-word.ts",
"predict-text": "node-ts ./src/bin/predict-wpm-text.ts",
"prepare": "lion-git-hooks",
"start": "node-ts ./src/index.ts",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "eslint --cache --fix .",
"prettier": "prettier --write src",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@leonzalion/configs": "^1.4.4",
"@types/inquirer": "^8.2.1",
"@types/jest": "^27.5.0",
"@types/jsonlines": "^0.1.1",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.31",
"@types/proper-lockfile": "^4.1.2",
"eslint": "^8.14.0",
"execa": "^6.1.0",
"jest": "^28.0.3",
"lint-staged": "^12.4.1",
"lion-git-hooks": "^1.0.10",
"prettier": "^2.6.2",
"ts-jest": "^28.0.1",
"ts-jest-resolver": "^2.0.0",
"tsc-alias": "^1.6.7",
"typescript": "^4.6.4"
},
"prettier": "@leonzalion/configs/prettier.cjs",
"commitlint": {
"extends": [
"@leonzalion/configs/commitlint.cjs"
]
},
"lint-staged": {
"*.{js,ts}": [
"pnpm run lint",
"pnpm run prettier"
]
},
"dependencies": {
"@sindresorhus/is": "^4.6.0",
"cheerio": "1.0.0-rc.10",
"dayjs": "^1.11.1",
"desm": "^1.2.0",
"got": "^12.0.4",
"inquirer": "^8.2.4",
"js-jsonl": "^1.1.1",
"jsonlines": "^0.1.1",
"lodash": "^4.17.21",
"onetime": "^6.0.0",
"outdent": "^0.8.0",
"p-limit": "^4.0.0",
"p-throttle": "^5.0.0",
"proper-lockfile": "^4.1.2"
}
}