-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.39 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
89
{
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/fetch-mock": "7.3.2",
"@types/jest": "25.1.4",
"@types/node": "9.6.18",
"@types/prop-types": "15.7.3",
"@types/react": "16.4.7",
"@types/react-test-renderer": "16.8.0",
"@types/util-deprecate": "1.0.0",
"babel-core": "6.26.3",
"babel-jest": "24.9.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"coveralls": "3.0.11",
"del": "5.1.0",
"fetch-mock": "9.3.1",
"gulp": "3.9.1",
"gulp-babel": "7.0.1",
"gulp-rename": "2.0.0",
"gulp-sourcemaps": "2.6.5",
"gulp-typescript": "5.0.1",
"jest": "24.9.0",
"lerna": "3.20.2",
"merge2": "1.3.0",
"prettier": "1.19.1",
"react": "16.5.2",
"react-test-renderer": "16.5.2",
"rimraf": "2.7.0",
"semantic-release": "15.9.17",
"semantic-release-monorepo": "7.0.1",
"ts-jest": "23.1.4",
"ts-node": "8.8.1",
"tslint": "6.1.0",
"tslint-config-airbnb": "5.10.0",
"tslint-config-prettier": "1.18.0",
"tslint-react": "4.1.0",
"typescript": "3.5.3"
},
"scripts": {
"build": "gulp build",
"test": "tsc --noEmit && jest",
"start": "gulp",
"lint": "prettier '**/*.{js,ts,tsx,json,md}' -l && tslint '**/*.{js,ts,tsx}' -c tslint.json -p tsconfig.json",
"lint:fix": "prettier '**/*.{js,ts,tsx,json,md}' --write -l && tslint '**/*.{js,ts,tsx}' -c tslint.json -p tsconfig.json --fix",
"release": "lerna exec --concurrency 1 -- ../../node_modules/.bin/semantic-release -e semantic-release-monorepo"
},
"dependencies": {},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"packages/*/src/**/*.{ts,tsx}"
],
"coverageReporters": [
"lcov",
"text"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://headless.ninja",
"testRegex": "src/.*(__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/.*/_*.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"node"
],
"projects": [
"<rootDir>/projects/*"
],
"restoreMocks": true,
"setupTestFrameworkScriptFile": "<rootDir>/packages/hn/src/__tests__/setup.js",
"clearMocks": true
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"trailingComma": "all"
}
}