forked from devexperts/dx-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.28 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
{
"name": "@devexperts/platform",
"scripts": {
"start": "lerna run --parallel watch",
"start:storybook": "cd packages/react-kit && yarn start",
"test": "yarn tslint && 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}\"",
"tslint": "tslint -c tslint.json --project tsconfig.json './packages/*/src/**/*.ts' './packages/*/src/**/*.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=*"
},
"private": true,
"workspaces": ["packages/*"],
"repository": {
"type": "git",
"url": "git+https://github.com/devex-web-frontend/dx-platform.git"
},
"bugs": {
"url": "https://github.com/devex-web-frontend/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": {
"tsConfigFile": "./tsconfig.json"
}
},
"setupFiles": [
"<rootDir>/packages/react-kit/config/jest-setup.ts"
],
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"author": "devexperts",
"license": "MPL-2.0",
"devDependencies": {
"@types/jest": "^23.0.0",
"babel-core": "^6.26.3",
"jest": "^23.1.0",
"lerna": "^3.10.5",
"prettier": "1.12.1",
"ts-jest": "^22.4.6",
"tslint": "^5.11.0",
"typescript": "^3.2.2"
}
}