forked from devexperts/dx-platform
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.63 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
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@devexperts/platform",
"scripts": {
"commitlint": "commitlint",
"start": "lerna run --parallel watch",
"start:storybook": "cd packages/react-kit && yarn start",
"storybook:publish": "cd packages/react-kit && yarn storybook:publish",
"test": "yarn eslint && yarn jest",
"lerna": "lerna",
"lerna:bootstrap": "yarn lerna -- bootstrap",
"lerna:update": "yarn lerna -- clean && yarn lerna -- bootstrap",
"lerna:prepare": "yarn lerna run prepare",
"lerna:publish": "yarn lerna -- publish --conventional-commits",
"build:kit": "cd packages/react-kit && yarn build",
"build:tools": "cd packages/tools && yarn build",
"build": "yarn build:tools && yarn build:kit",
"jest": "jest",
"prettier": "prettier --list-different \"./packages/**/src/**/*.{ts,tsx}\"",
"prettier:fix": "prettier --write \"./packages/**/src/**/*.{ts,tsx}\"",
"publish:patch": "yarn lerna publish patch --force-publish=*",
"publish:minor": "yarn lerna publish minor --force-publish=*",
"publish:major": "yarn lerna publish major --force-publish=*",
"eslint": "eslint ./packages/*/src/**/*.{ts,tsx}",
"eslint:fix": "eslint --fix ./packages/*/src/**/*.{ts,tsx}",
"eslint:config": "eslint --print-config ./packages/*/src/**/*.{ts,tsx}"
},
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/devexperts/dx-platform.git"
},
"bugs": {
"url": "https://github.com/devexperts/dx-platform/issues"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"modulePathIgnorePatterns": [
"<rootDir>/packages/utils/dist/",
"<rootDir>/packages/react-kit/dist/",
"<rootDir>/packages/rx-utils/dist/"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"timers": "fake",
"globals": {
"ts-jest": {
"tsConfig": "./tsconfig.json"
}
},
"setupFiles": [
"<rootDir>/packages/react-kit/config/jest-setup.ts"
],
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"author": "devexperts",
"license": "MPL-2.0",
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/travis-cli": "^8.1.0",
"@types/jest": "^24.0.11",
"eslint": "^6.3.0",
"husky": "^3.0.5",
"jest": "^24.7.1",
"lerna": "^3.10.5",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}