-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
executable file
·54 lines (54 loc) · 1.78 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
{
"private": "true",
"name": "b3",
"author": "Alessandro Menezes",
"scripts": {
"start:server": "cd packages/backend && yarn start:dev",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"clean": "rm -rf dist",
"test": "jest",
"test:staged": "jest --silent --passWithNoTests --runInBand --detectOpenHandles",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"prepare": "husky install"
},
"dependencies": {
"env-cmd": "^10.1.0",
"env-var": "^7.0.0",
"module-alias": "^2.2.2",
"rimraf": "^3.0.2",
"validator": "^13.5.2"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/module-alias": "^2.0.0",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"git-commit-msg-linter": "^3.1.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"ts-jest": "^26.5.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.5"
},
"_moduleAliases": {
"@domain": "dist/backend/src/domain/*",
"@frontend": "dist/frontend/src/*",
"@backend": "dist/backend/src/*",
"@shared": "dist/shared/src/*",
"@": "dist/*"
},
"workspaces": [
"packages/*"
]
}