-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "dot-tutor",
"version": "0.0.0",
"private": true,
"scripts": {
"prepare": "husky install",
"setup": "npm run setup:env && npm ci && npm run build -w packages/*",
"setup:env": "cp translate/.env.sample translate/.env",
"dev:website": "npm run dev -w website",
"dev:learn": "npm run dev -w learn",
"dev:translate": "npm run dev -w translate",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build:packages": "npm run build -w packages/*",
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"type-check": "npm run type-check --workspaces --if-present",
"test": "npm run test --workspaces --if-present"
},
"devDependencies": {
"husky": "^9.0.11",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11"
},
"workspaces": [
"learn",
"translate",
"website",
"packages/*"
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}