-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.95 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
{
"name": "storyteller",
"private": true,
"type": "module",
"packageManager": "yarn@4.5.3",
"workspaces": [
"web/",
"docs/",
"mobile/",
"fs/",
"epub/"
],
"scripts": {
"build:docs": "yarn workspace @storyteller/docs build",
"build:web": "yarn workspace @storyteller/web build",
"build:web:worker": "yarn workspace @storyteller/web build:worker",
"build": "concurrently -P 'npm:build:*'",
"check:format": "prettier --check .",
"check:lint": "eslint .",
"types:docs": "tsc -p docs",
"types:web": "tsc -p web",
"check:types": "tsc --build",
"check": "yarn check:types && yarn check:lint && yarn check:format",
"deps": "yarn install && npm rebuild --build-from-source sqlite3",
"dev:docs": "yarn workspace @storyteller/docs start",
"dev:web": "yarn workspace @storyteller/web dev",
"fix:format": "prettier --write .",
"fix:lint": "eslint --fix .",
"fix": "concurrently -P 'npm:fix:*'",
"postinstall": "husky",
"test:epub": "yarn workspace @smoores/epub test",
"test:web": "yarn workspace @storyteller/web test:all",
"test": "concurrently -P 'npm:test:*'"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.0",
"@next/eslint-plugin-next": "^14.1.0",
"@types/eslint": "^8.56.2",
"@types/eslint__eslintrc": "^2.1.1",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"next": "^14.1.0",
"prettier": "^3.2.5",
"pyright": "^1.1.348",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.4.5",
"typescript-plugin-css-modules": "^5.0.2"
},
"dependencies": {
"@types/lint-staged": "^13.3.0"
}
}