forked from ateett12ue/eden-app-2-FrontEnd-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.04 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "soil-turborepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev --filter=web... --parallel",
"dev:alpha": "turbo run dev --filter=@eden/app-alpha... --parallel",
"dev:nodes": "turbo run dev --filter=@eden/app-nodes... --parallel",
"dev:grants": "turbo run dev --filter=@eden/app-grants... --parallel",
"storybook": "yarn workspace storybook storybook",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{js,ts,tsx,md}\"",
"test": "turbo run test -- --passWithNoTests",
"test:coverage": "yarn workspace @eden/package-ui test --coverage",
"test:watch": "yarn workspace @eden/package-ui test --watch",
"test:turbo": "turbo run test --filter=@eden/package-ui",
"clean": "turbo run clean && rm -rf node_modules",
"clean-windows": "turbo run clean-windows && rd /s /q node_modules",
"build": "turbo run build --filter=web...",
"build:alpha": "turbo run build --filter=@eden/app-alpha...",
"build:nodes": "turbo run build --filter=@eden/app-nodes...",
"build:storybook": "turbo run build:storybook --filter=storybook...",
"build-storybook": "yarn workspace storybook build-storybook",
"prepare": "husky install",
"codegen:eden": "turbo run codegen:eden"
},
"devDependencies": {
"@eden/package-config": "*",
"husky": "^8.0.0",
"lint-staged": ">=10",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.1.13",
"turbo": "^1.7.0"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"dependencies": {
"@swc/core": "^1.3.23",
"@swc/jest": "^0.2.24",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"ts-node": "^10.9.1"
},
"packageManager": "[email protected]",
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}