-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 970 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
38
{
"name": "economica",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
]
},
"scripts": {
"dev": "turbo dev --parallel",
"build": "turbo build",
"start": "turbo start --parallel",
"lint": "turbo lint",
"format": "./node_modules/.bin/prettier --write \"**/*.{ts,tsx}\"",
"deploy": "docker compose up --build --force-recreate"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/node": "^18.11.9",
"@types/prettier": "^2",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"prettier": "^2.8.1",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-node": "^10.9.1",
"turbo": "latest",
"typescript": "^4.9.3"
},
"dependencies": {}
}