-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 898 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
{
"name": "turborepo-node-react-tailwind-starter",
"version": "0.0.0",
"description": "A starter kit for turborepo, express, react and tailwind",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"apps/*",
"services/*",
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"husky": "^7.0.0",
"prettier": "^2.5.1",
"turbo": "^1.2.2",
"wait-on": "^6.0.1"
},
"scripts": {
"prepare": "husky install",
"dev": "turbo run dev --parallel",
"dapr:run": "turbo run dapr:run --parallel",
"lint": "turbo run lint --parallel",
"test": "turbo run test",
"test:ci": "turbo run test:ci",
"build": "turbo run build"
},
"packageManager": "[email protected]"
}