-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 KB
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
43
44
45
46
47
48
49
{
"name": "bullsfirst-tailwind",
"description": "An example of using Code Shaper to build a React app with Tailwind CSS",
"version": "0.0.1",
"private": true,
"license": "MIT",
"workspaces": [
"apps/*",
"configs/*",
"packages/*",
"plugins/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"graph": "turbo run build --graph=dependency-graph.png",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean && rimraf node_modules",
"prepare": "husky install",
"format": "prettier --write \"**/README.md\" \"**/src/**/*.{js,jsx,ts,tsx,json}\"",
"storybook": "cd storybook && npm run storybook",
"build-storybook": "cd storybook && build-storybook -s public",
"cypress": "cd apps/bullsfirst-react && npm run cypress"
},
"devDependencies": {
"@code-shaper/react": "latest",
"@code-shaper/shaper-utils": "latest",
"@code-shaper/typescript": "latest",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"turbo": "latest"
},
"overrides": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": "prettier --write"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "npm@8.4.0"
}