-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.68 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
{
"name": "oh-my-monorepo",
"private": true,
"version": "1.0.0",
"description": "A monorepo try demo project.",
"main": "index.js",
"type": "commonjs",
"keywords": [],
"author": "HduSy",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"format": "prettier --write 'packages/**/*.{js,jsx,ts,tsx}'",
"lint": "eslint '{packages,test}/**/*.{js,jsx,ts,tsx}' --fix",
"lint:style": "stylelint '{packages}/**/*.{css,scss}' --fix",
"commit": "cz"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@nestjs/cli": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"commitizen": "^4.2.5",
"conventional-changelog": "^3.1.25",
"conventional-changelog-cli": "^2.2.2",
"conventional-changelog-gitmoji-config": "^1.4.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.9.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss-scss": "^4.0.6",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0",
"typescript": "^4.7.4",
"webpack": "^5.74.0"
},
"pnpm": {
"overrides": {
"terser@>=5.0.0 <5.14.2": ">=5.14.2"
}
},
"dependencies": {
"@types/node": "^16.0.0"
}
}