-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
50 lines (50 loc) · 1.69 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
{
"name": "nodejs-code-generator",
"version": "0.0.0",
"private": true,
"author": {
"name": "DhiWise",
"url": "https://www.dhiwise.com"
},
"scripts": {
"start": "lerna run start",
"install": "lerna clean -y && lerna bootstrap --hoist",
"test": "jest --runInBand",
"commit": "cz",
"release_prepatch": "lerna publish prepatch --conventional-commits && conventional-github-releaser --preset angular",
"release_patch": "lerna publish patch --conventional-commits && conventional-github-releaser --preset angular",
"release_premajor": "lerna publish premajor --conventional-commits && conventional-github-releaser --preset angular",
"release": "lerna publish --conventional-commits && conventional-github-releaser --preset angular",
"lint": "eslint . --ext .js --fix"
},
"jest": {
"modulePathIgnorePatterns": [
"packages/server/output/*"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"commitizen": "^4.2.4",
"conventional-github-releaser": "^3.1.2",
"cz-lerna-changelog": "^2.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"lerna": "^4.0.0",
"react-app-rewire-aliases": "^0.2.0",
"react-app-rewired": "^2.1.8",
"react-error-overlay": "^6.0.9",
"supertest": "^6.1.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}