-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.32 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
71
72
73
74
75
{
"name": "@vdtn359/news",
"version": "0.0.0",
"private": true,
"description": "simple news",
"license": "ISC",
"author": "Tuan Nguyen <[email protected]>",
"scripts": {
"cli": "node ./taskfile.js",
"prepare": "pnpm run cli -- buildPackages",
"postinstall": "pnpm run cli -- postInstall"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"**/*.{json,html,css}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/exec": "5.0.0",
"@semantic-release/git": "9.0.0",
"@semantic-release/npm": "7.0.5",
"@semantic-release/release-notes-generator": "9.0.1",
"@types/cheerio": "0.22.18",
"@types/jest": "25.1.4",
"@types/lodash": "4.14.150",
"@types/node": "13.13.5",
"@types/react": "16.9.34",
"@vdtn359/mono-install": "1.1.1",
"@vdtn359/semantic-release-monorepo": "1.0.5",
"@zerollup/ts-transform-paths": "1.7.12",
"next-compose-plugins": "2.2.0",
"semantic-release": "17.1.1",
"tasksfile": "5.1.1",
"ts-jest": "25.2.1",
"ts-transpile": "1.2.4",
"tsconfig-paths": "3.9.0",
"ttypescript": "1.5.10",
"typescript": "3.9.6"
},
"optionalDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@typescript-eslint/eslint-plugin": "2.32.0",
"@typescript-eslint/parser": "2.32.0",
"chokidar-cli": "^2.1.0",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.2.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.19.0",
"husky": "4.2.3",
"jest": "26.1.0",
"link-parent-bin": "1.0.2",
"lint-staged": "10.2.11",
"prettier": "2.0.2"
}
}