-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "chersite",
"description": "Multi apps boilerplate for cher-ami projects.",
"version": "4.0.0",
"author": "cher-ami",
"main": "src/index-client.tsx",
"type": "module",
"scripts": {
"front:dev": "cd apps/front && npm run dev",
"front:build": "cd apps/front && npm run build",
"front:start": "cd apps/front && npm run start",
"front:test": "cd apps/front && npm run test",
"front:scaffold": "node cli/tasks/scaffold-component/scaffold-component.js",
"back:scaffold-wp": "node cli/tasks/scaffold-wp/scaffold-wp.js",
"setup": "node cli/tasks/setup/setup.js && npm run prepare",
"prepare": "husky install",
"postinstall": "cd apps/front && npm i"
},
"devDependencies": {
"@cher-ami/debug": "^1.2.0",
"@cher-ami/mfs": "^0.2.0",
"change-case": "^5.4.2",
"lint-staged": "^15.2.2",
"husky": "^9.0.10",
"prettier": "^3.2.5",
"inquirer": "^9.2.14",
"chalk": "^5.3.0"
},
"lint-staged": {
"apps/front/**/*.{tsx,ts,jsx,js,scss,css,json,md}": [
"npx prettier --write ./apps/front/"
]
},
"prettier": {
"printWidth": 90,
"semi": false,
"trailingComma": "none"
}
}