-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.51 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.51 KB
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
{
"name": "monorepo",
"version": "1.6.2",
"description": "Base Project",
"author": "Carlos Max",
"private": true,
"scripts": {
"start": "concurrently \"yarn workspace @monorepo/server start\" \"yarn workspace @monorepo/web start\"",
"build": "yarn nx run-many --target=build",
"dev": "concurrently \"yarn workspace @monorepo/server build:watch\" \"yarn workspace @monorepo/server dev\" \"yarn workspace @monorepo/web dev\"",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install",
"jest:clear": "jest --clearCache",
"test": "jest --passWithNoTests --runInBand --no-cache",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:integration": "npm test -- --watch -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"test:coveralls": "npm run test:ci && coveralls < coverage/lcov.info",
"project:structure": "yarn nx graph"
},
"devDependencies": {
"@monorepo/eslint-config": "*",
"@types/jest": "^27.5.2",
"concurrently": "^7.3.0",
"coveralls": "^3.1.1",
"git-commit-msg-linter": "^4.1.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.8",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.7.4",
"nx": "14.8.0",
"@nrwl/nx-cloud": "latest"
},
"workspaces": {
"packages": [
"packages/*",
"packages/shared/*"
]
},
"_moduleAliases": {
"@": "packages/server/dist"
}
}