-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 996 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
{
"name": "website",
"version": "1.0.0",
"scripts": {
"prepare": "test -d node_modules/husky && husky",
"build:packages": "pnpm --filter \"./packages/**\" run -r build",
"prebuild:all": "pnpm build:packages",
"build:all": "pnpm --filter \"./apps/**\" run -r build",
"start": "docker compose pull && docker compose down && docker compose up -d",
"stop": "docker compose down",
"update": "docker compose pull && docker compose up -d"
},
"author": "Soulike",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.10.3",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
},
"prettier": {
"singleQuote": true,
"jsxSingleQuote": true,
"bracketSpacing": false,
"tabWidth": 2
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}