This repository has been archived by the owner on Mar 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 2.01 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
{
"private": true,
"scripts": {
"start": "yarn lint && yarn build:clean && yarn test",
"lint": "tslint --project tsconfig.json",
"lint:fix": "yarn lint --fix",
"bootstrap": "lerna bootstrap",
"build": "node ./scripts/buildTs.js",
"build:clean": "rm -rf ./packages/*/build ./packages/*/coverage && yarn build",
"build:watch": "yarn build -- --watch",
"clean-all": "rm -rf ./node_modules ./packages/*/node_modules ./packages/*/coverage ./packages/*/build",
"publish": "yarn build:clean && lerna publish from-git -y",
"test": "cross-env NODE_ENV=test jest --config jest.config.js --coverage --useStderr --forceExit --detectOpenHandles --verbose",
"test:watch": "cross-env NODE_ENV=test jest --config jest.config.js --coverage --useStderr --forceExit --detectOpenHandles --verbose --watchAll",
"docs:ts": "typedoc --out ts-docs ./packages/**/* --theme default --readme none --exclude './packages/underbase-cli/**/*'",
"docker:start": "docker-compose up underbase-dev",
"docker:down": "docker-compose down",
"docker:test": "docker-compose run underbase-test"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended"
]
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@types/bluebird": "3.5.30",
"@types/fs-extra": "8.1.0",
"@types/jest": "25.2.1",
"@types/lodash": "4.14.149",
"@types/mongodb": "3.5.4",
"@types/node": "12.12.32",
"@types/type-check": "0.3.27",
"cross-env": "7.0.2",
"husky": "4.2.5",
"jest": "25.3.0",
"jest-extended": "0.11.5",
"lerna": "3.21.0",
"string-length": "4.0.1",
"ts-jest": "25.2.1",
"ts-loader": "5.4.5",
"tslint": "5.20.1",
"tslint-eslint-rules": "5.4.0",
"tslint-microsoft-contrib": "6.1.0",
"typedoc": "0.15.4",
"typescript": "3.8.3",
"vrsource-tslint-rules": "6.0.0"
}
}