-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
{
"name": "bionic-reader",
"version": "0.1.0",
"description": "A simple bionic-reader algorithm I implemented.",
"type": "module",
"engines": {
"node": ">=18.14.0"
},
"scripts": {
"start:server": "npm -w @bionic-reader/server run start",
"run:server": "npm -w @bionic-reader/server run run:server",
"watch:utils": "npm -w @bionic-reader/utils run watch",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"type-check": "tsc --noEmit",
"format": "prettier -w \"**/*.{ts,tsx,js,jsx}\" && pnpm run type-check && pnpm run lint:fix",
"prepare": "husky install"
},
"keywords": [
"Bionic Reader",
"bionic-reader",
"Algorithm",
"Bionic"
],
"author": "Aaron",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ragudos/bionic-reader.git"
},
"workspaces": [
"./packages/server",
"./packages/utils"
],
"devDependencies": {
"@bionic-reader/eslint-config": "file:./packages/bionic-reader-eslint-config",
"@bionic-reader/prettier-config": "file:./packages/bionic-reader-prettier-config",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@bionic-reader/utils": "link:packages\\utils"
}
}