-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "spec2ts-monorepo",
"version": "1.0.0-monorepo",
"description": "Monorepo for utilies to convert specifications to Typescript using TypeScript native compiler",
"author": "Touchify <[email protected]>",
"private": true,
"license": "MIT",
"homepage": "https://github.com/touchifyapp/spec2ts#readme",
"repository": {
"type": "git",
"url": "https://github.com/touchifyapp/spec2ts"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"test": "lerna run test",
"test:ci": "lerna --ci run test -- -- --ci",
"lint": "lerna run lint",
"clean": "lerna run clean",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/jest": "^29.5.4",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"del-cli": "^5.1.0",
"eslint": "^8.49.0",
"husky": "^8.0.0",
"jest": "^29.6.4",
"lerna": "^7.2.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}