-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "next-electron-demo",
"version": "1.0.0",
"description": "demo",
"scripts": {
"postinstall": "husky install",
"clean": "yarn workspaces foreach -A run clean && rm -rf node_modules",
"build": "yarn workspaces foreach -At run build",
"start": "yarn workspaces foreach -Apt run start",
"eslint": "eslint --cache --cache-location node_modules/.cache/eslint --fix",
"prettier": "prettier --write --loglevel=warn",
"lint:all": "yarn eslint . && yarn prettier .",
"lint:staged": "lint-staged --debug"
},
"author": "kirill.konshin",
"license": "ISC",
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-next": "^15.0.2",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"next": "^15.0.2",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"publishConfig": {
"access": "restricted"
},
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"demo",
"lib",
"pkg"
]
},
"installConfig": {
"hoistingLimits": "dependencies"
}
}