-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.76 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
{
"name": "root",
"private": true,
"packageManager": "pnpm@9.7.0",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/config-lerna-scopes": "^17.4.2",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.7.10",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"changeset-conventional-commits": "^0.2.5",
"conventional-changelog-conventionalcommits": "5.0.0",
"depcheck": "^1.4.7",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-storybook": "^0.6.11",
"jest": "^29.2.1",
"jest-silent-reporter": "^0.5.0",
"lerna": "^6.5.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.17",
"typescript": "^4.8.4"
},
"version": "0.0.0",
"description": "A lightweight opinionated framework for building services in Node.js",
"repository": "git@github.com:saswatds/cortec.git",
"author": "Saswat Das <saswatds@gmail.com>",
"license": "MIT",
"volta": {
"node": "18.18.2"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "lerna run build --stream",
"lint": "lerna run lint --stream",
"test": "pnpm --filter test run test",
"depcheck": "lerna run depcheck --stream",
"preversion": "pnpm run build",
"docs": "typedoc && open doc/index.html"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
]
}
}