-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.93 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
{
"name": "react-visual-novel-root",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/utility-first/react-visual-novel.git"
},
"author": "Ayan Yenbekbay <ayan@utility-first.co>",
"scripts": {
"dev": "pnpm --recursive --parallel run dev",
"preinstall": "npx only-allow pnpm",
"lint": "eslint --ext .js,.ts,.tsx --cache .",
"prepare": "is-ci || husky install",
"release": "auto shipit",
"typecheck": "run-p --continue-on-error typecheck:*",
"typecheck:demo": "tsc -p demo",
"typecheck:react-visual-novel": "tsc -p packages/react-visual-novel"
},
"lint-staged": {
"**/*.{js,ts,tsx,json,yml,yaml}": "prettier --write",
"**/*.{js,ts,tsx}": "eslint --fix"
},
"devDependencies": {
"@auto-it/conventional-commits": "10.37.6",
"@auto-it/npm": "10.37.6",
"@trivago/prettier-plugin-sort-imports": "3.3.1",
"@types/node": "16.11.12",
"@types/prettier": "2.7.1",
"@typescript-eslint/eslint-plugin": "5.40.1",
"@typescript-eslint/parser": "5.40.1",
"auto": "10.37.6",
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"eslint-plugin-codegen": "0.16.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-promise": "6.1.0",
"eslint-plugin-tailwindcss": "3.6.2",
"husky": "8.0.1",
"is-ci": "3.0.1",
"lerna": "6.0.1",
"lint-staged": "13.0.3",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"prettier-plugin-packagejson": "2.3.0",
"typescript": "4.8.4"
},
"engines": {
"node": "16",
"pnpm": "7"
},
"auto": {
"plugins": [
"npm",
[
"conventional-commits",
{
"preset": "angular"
}
]
],
"author": {
"name": "yenbekbay",
"email": "ayan.yenb@gmail.com"
}
},
"pnpm": {
"patchedDependencies": {
"eslint-plugin-codegen@0.16.1": "patches/eslint-plugin-codegen@0.16.1.patch"
}
}
}