forked from forbole/big-dipper-2.0-cosmos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.93 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
{
"name": "big-dipper-2.0-cosmos",
"version": "2.2.0",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "dotenv -- turbo run dev --filter=$(dotenv -- printenv PROJECT_NAME || echo web)...",
"dev:ci": "turbo run dev --continue",
"build": "dotenv -- turbo run build --filter=$(dotenv -- printenv PROJECT_NAME || echo web)...",
"build:ci": "turbo run build --continue --concurrency=1",
"clean": "yarn cache clean --mirror && [ -d \"node_modules\" ] && turbo run clean && rm -rf node_modules",
"start": "dotenv -- turbo run start --filter=$(dotenv -- printenv PROJECT_NAME || echo web)...",
"format": "prettier --write \"{**/src/{,**/}*.{js,ts,tsx,mjs,cjs,md},e2e/{,**/}*.{js,ts,tsx,mjs,cjs,md}}\"",
"check-types": "dotenv -- turbo run check-types --filter=$(dotenv -- printenv PROJECT_NAME || echo web)...",
"check-types:ci": "turbo run check-types --continue",
"lint": "dotenv -- turbo run lint --filter=$(dotenv -- printenv PROJECT_NAME || echo web)...",
"lint:ci": "turbo run lint --continue",
"test": "dotenv -- turbo run test --filter=$(dotenv -- printenv PROJECT_NAME || echo web)...",
"test:ci": "turbo run test --continue",
"e2e": "playwright test",
"e2e:install": "playwright install --with-deps",
"graphql:codegen": "turbo run graphql:codegen --continue",
"postinstall": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@playwright/test": "^1.29.2",
"@types/eslint": "^8.4.10",
"@types/esprima": "^4.0.3",
"dotenv-cli": "^6.0.0",
"eslint": "^8.31.0",
"esprima": "^4.0.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "2.8.2",
"turbo": "^1.6.3",
"typescript": "^4.9.4"
},
"packageManager": "[email protected]",
"engines": {
"yarn": ">=1.22"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,css,md}": "npx prettier --write"
}
}