-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.57 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
{
"name": "root",
"version": "1.0.0-alpha.1",
"private": true,
"license": "BSD-3-Clause",
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {
"babel-loader": "8.1.0"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/jest": "^26.0.24",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^37.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.4",
"jest": "26.6.0",
"jest-junit": "^12.2.0",
"jest-mock-extended": "^1.0.18",
"lerna": "^3.22.1",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"scripts": {
"clean": "./node_modules/.bin/tsc --build --clean && yarn workspace @concepta/react-ui-components clean",
"build": "./node_modules/.bin/tsc --build && yarn workspace @concepta/react-ui-components build",
"watch": "yarn build && ./node_modules/.bin/tsc --build --watch",
"prepare": "husky install && yarn clean && yarn build",
"lint": "eslint \"packages/**/{src,test}/**/*.{ts,js,json}\" --config .eslintrc.js --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage --coverageReporters=text --coverageReporters=json --coverageReporters=cobertura --coverageReporters=json-summary --coverageReporters=lcov",
"test:ci": "yarn test:cov --ci --reporters=default --reporters=jest-junit",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:all": "yarn test && yarn test:e2e",
"doc": "rimraf ./documentation && compodoc -p ./tsconfig.doc.json --disablePrivate --disableProtected",
"doc:serve": "yarn doc -s",
"doc:watch": "yarn doc:serve -w",
"doc:cov": "yarn doc --coverageMinimumPerFile 90 --coverageTestThresholdFail false",
"doc:cov:ut": "yarn doc:cov --unitTestCoverage ./coverage/coverage-summary.json",
"doc:ci": "yarn doc:cov:ut --coverageTestThresholdFail true",
"changelog": "standard-version",
"changelog:minor": "standard-version --release-as minor",
"changelog:patch": "standard-version --release-as patch",
"changelog:major": "standard-version --release-as major"
}
}