forked from forbole/big-dipper-2.0-cosmos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.54 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
{
"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\" ] && dotenv -- 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}}\"",
"ts-check": "dotenv -- turbo run ts-check --filter=$(dotenv -- printenv PROJECT_NAME || echo web)...",
"ts-check:ci": "turbo run ts-check --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/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@next/eslint-plugin-next": "^13.4.1",
"@playwright/test": "^1.33.0",
"@types/eslint": "^8.37.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"dotenv-cli": "^7.2.1",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.4.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "^1.9.3",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-turbo": "^1.9.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"next": "^13.4.1",
"prettier": "2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"turbo": "^1.9.3",
"typescript": "^5.0.4"
},
"packageManager": "[email protected]",
"engines": {
"yarn": ">=3.5",
"node": ">=18.17.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,css,md}": "npx prettier --write"
}
}