-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.67 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": "fastify-postgres-template",
"version": "0.0.1",
"private": true,
"author": "Wednesday Solutions",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"DEVELOPMENT": "-------------------- DEVELOPMENT --------------------",
"turbo": "turbo",
"start:dev": "turbo run start:dev --parallel",
"start:qa": "turbo run start:qa --parallel",
"start:prod": "turbo run start:prod --parallel",
"TESTING": "-------------------- TESTING --------------------",
"test:all": "turbo run test:all",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"test:coverage": "turbo run test:coverage",
"test:verbose": "turbo run test:verbose",
"INTEGRATION": "-------------------- INTEGRATION --------------------",
"start:svc": "bash dev/alpha-integration/start.sh",
"stop:svc": "bash dev/alpha-integration/stop.sh",
"CODE_STYLE": "-------------------- CODE STYLE --------------------",
"lint:no-fix": "turbo run lint:no-fix",
"lint:fix": "turbo run lint:fix",
"BUILDING": "-------------------- BUILDING --------------------",
"build": "turbo run build --filter=./apps/*",
"GIT": "-------------------- GIT --------------------",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"devDependencies": {
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"eslint-config-custom": "workspace:*",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"turbo": "latest",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "pnpm@7.25.0"
}