-
Notifications
You must be signed in to change notification settings - Fork 188
/
package.json
41 lines (41 loc) · 932 Bytes
/
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
{
"name": "Panora",
"version": "1.0.0",
"description": "",
"main": "index.js",
"packageManager": "pnpm@8.9.2",
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"test": "echo \"Error: no test specified\"",
"prepare": "husky install",
"version": "changeset version",
"release": "pnpm run lint && pnpm run build && changeset publish",
"preinstall": "npx only-allow pnpm"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.52.0",
"husky": "^8.0.0",
"lint-staged": "^15.0.2"
},
"lint-staged": {
"!website-docs/**/*.{ts,tsx,js}": [],
"packages/*.{ts,tsx,js}": [
"eslint"
]
},
"dependencies": {
"@changesets/cli": "^2.26.2",
"gitmoji-cli": "^9.0.0",
"optional": "^0.1.4",
"sharp": "^0.33.2",
"turbo": "^1.10.16"
},
"private": true,
"engines": {
"node": "20.9.0"
}
}