-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.29 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "triquetra",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"turbo": {
"baseBranch": "origin/main",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**",
".next/**",
"storybook-static/**"
]
},
"trq-next": {
"dependsOn": [
"^build",
"NEXT_PUBLIC_SANITY_PROJECT_ID",
"NEXT_PUBLIC_SANITY_PROJECT_DATASET",
"NEXT_PUBLIC_SANITY_API_VERSION",
"SANITY_API_TOKEN",
"SANITY_STUDIO_PREVIEW_KEY"
]
},
"trq-remix": {
"dependsOn": [
"^build"
]
},
"trq-storybook": {
"dependsOn": [
"^build",
"STORYBOOK_SANITY_PROJECT_ID",
"STORYBOOK_SANITY_DATASET"
]
},
"trq-sanity": {
"dependsOn": [
"^build",
"SANITY_PROJECT_ID",
"SANITY_PROJECT_DATASET",
"SANITY_API_VERSION",
"SANITY_STUDIO_PREVIEW_SITE",
"SANITY_STUDIO_API_TOKEN",
"SANITY_STUDIO_PREVIEW_KEY"
]
},
"test": {
"dependsOn": [
"^build"
],
"outputs": []
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
}
}
},
"scripts": {
"dev": "turbo run dev --parallel --no-cache",
"build": "turbo run build",
"next": "npx turbo run dev --scope=trq-next --include-dependencies --no-deps",
"next:build": "npx turbo run build --scope=trq-next --include-dependencies --no-deps",
"remix": "npx turbo run dev --scope=trq-remix --include-dependencies --no-deps",
"remix:build": "npx turbo run build --scope=trq-remix --include-dependencies --no-deps",
"sanity": "npx turbo run dev --scope=trq-sanity --include-dependencies --no-deps",
"sanity:build": "npx turbo run build --scope=trq-sanity --include-dependencies --no-deps",
"storybook": "npx turbo run dev --scope=trq-storybook --include-dependencies --no-deps",
"storybook:build": "npx turbo run build --scope=trq-storybook --include-dependencies --no-deps",
"lint": "clear && turbo run lint",
"sanity-upgrade": "cd ./apps/trq-sanity && sanity upgrade",
"type-check": "cd ./packages/ui && yarn type-check && cd ../../apps/trq-next && yarn type-check",
"types": "npx sanity-codegen",
"test": "turbo run test",
"test:ci": "cd ./apps/trq-next && yarn test:ci",
"cypress": "cd ./apps/trq-next && yarn cypress",
"cypress:headless": "cd ./apps/trq-next && yarn cypress:headless",
"e2e": "cd ./apps/trq-next && yarn e2e",
"e2e:headless": "cd ./apps/trq-next && yarn e2e:headless",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@types/node": "^17.0.10",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"sanity-codegen": "^0.9.8",
"turbo": "^1.0.28",
"typescript": "^4.5.4"
},
"dependencies": {
"@babel/preset-typescript": "^7.15.0",
"dayjs": "^1.10.7",
"next-sanity": "^0.4.0",
"react": "^17.0.2",
"react-icons": "^4.3.1",
"sanity-pills": "^1.11.0"
},
"resolutions": {
"**/three": "0.119.1"
}
}