-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.7 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "topcoder-framework",
"version": "0.0.0",
"author": {
"name": "Topcoder Platform Team",
"url": "https://topcoder.com"
},
"scripts": {
"build": "scripty",
"build:proto": "scripty",
"lint": "scripty",
"format": "scripty",
"clean": "scripty",
"local-publish": "scripty",
"prepare": "husky install",
"prepublishOnly": "yarn build",
"npm-registry:login": "scripty"
},
"scripty": {
"path": "./scripts/workspace",
"windowsPath": "./scripts-win/workspace"
},
"private": true,
"workspaces": [
"domains/*",
"lib/*",
"packages/*",
"clients/*"
],
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/config-lerna-scopes": "^17.2.1",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"commitlint": "^17.3.0",
"eslint": "^8.30.0",
"prettier": "^2.8.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"concurrently": "^7.6.0",
"lerna": "^6.3.0",
"lerna-changelog": "^2.2.0",
"lint-staged": "^13.1.0",
"rimraf": "^3.0.2",
"scripty": "^2.1.1"
},
"repository": {
"type": "git",
"url": "[email protected]:topcoder-platform/topcoder-framework.git"
},
"lint-staged": {
"*.{ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
],
"*.{json,md,yml}": [
"npx prettier --write"
]
},
"publishConfig": {
"registry": "https://topcoder-409275337247.d.codeartifact.us-east-1.amazonaws.com/npm/topcoder-framework/"
},
"volta": {
"lerna": "6.5.1",
"node": "18.14.1",
"yarn": "1.22.19"
}
}