-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 977 Bytes
/
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
{
"name": "colonial-collections",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"start": "turbo run start",
"compile": "turbo run compile",
"fix": "gts fix",
"lint": "gts lint",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:ci": "turbo run test:ci",
"test:integration": "turbo run test:integration",
"test:integration:watch": "turbo run test:integration:watch",
"test:e2e": "turbo run test:e2e",
"test:e2e:ci": "turbo run test:e2e",
"test:e2e:open": "turbo run test:e2e:open",
"db:generate": "turbo run db:generate",
"db:migrate": "turbo run db:migrate"
},
"devDependencies": {
"@colonial-collections/eslint-config": "*",
"gts": "5.3.0",
"turbo": "1.13.3"
},
"engines": {
"node": "18.x"
},
"packageManager": "[email protected]"
}