-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.73 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
{
"name": "root",
"private": true,
"description": "Hexagonal architecture framework",
"packageManager": "[email protected]",
"scripts": {
"build:all": "turbo run build",
"commit": "commit",
"format:all": "turbo run format",
"lint:all": "turbo run lint",
"prepare": "husky install",
"test:integration:js": "turbo test:integration:js",
"test:js": "turbo run test:js",
"test:mutation": "turbo run test:mutation --concurrency=1",
"test:uncommitted": "turbo run test:uncommitted --filter [HEAD]",
"test:unit:js:coverage": "turbo run test:unit:js:coverage",
"test:unit:js": "turbo run test:unit:js",
"test": "turbo run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuaklabs/porygon.git"
},
"keywords": [
"hexagonal",
"architecture",
"typescript"
],
"author": "Cuak McCuackl <[email protected]>",
"license": "See license in \"LICENSE\" file",
"bugs": {
"url": "https://github.com/cuaklabs/porygon/issues"
},
"homepage": "https://github.com/cuaklabs/porygon#readme",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@commitlint/prompt-cli": "17.7.1",
"@cuaklabs/eslint-config-porygon": "workspace:./packages/eslint-config-porygon",
"@cuaklabs/porygon-jest-config": "workspace:./packages/porygon-jest-config",
"@cuaklabs/porygon-prettier-config": "workspace:./packages/porygon-prettier-config",
"@cuaklabs/porygon-scripts": "workspace:./packages/porygon-scripts",
"@cuaklabs/typescript-config-porygon": "workspace:./packages/typescript-config-porygon",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"turbo": "1.10.13"
}
}