forked from NoQuarterTeam/boilerplate-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.5 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
{
"name": "root",
"private": true,
"version": "1.0.0",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
]
},
"turbo": {
"baseBranch": "origin/main",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
".next/**"
]
},
"prettify": {},
"typecheck": {},
"lint": {},
"dev": {
"cache": false
}
}
},
"scripts": {
"dev": "turbo run dev --parallel",
"start:api": "node packages/api/dist",
"build:api": "cd packages/api && yarn build",
"heroku-prebuild": "rm -rf packages/{web,app}",
"heroku-cleanup": "cd packages/api && yarn generate",
"build": "yarn build:api",
"prettify": "turbo run prettify",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@commitlint/cli": "16.0.1",
"@commitlint/config-conventional": "16.0.0",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"babel-eslint": "10.1.0",
"eslint": "8.5.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"husky": "7.0.4",
"lerna": "4.0.0",
"lint-staged": "12.1.4",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"turbo": "1.0.23",
"typescript": "4.5.4"
},
"resolutions": {
"prettier": "2.5.1"
}
}