-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.85 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
{
"name": "react-type-check",
"version": "1.0.4",
"description": "Type checking utilities for React elements.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/react-type-check.esm.js",
"files": [
"dist"
],
"repository": "git@github.com/flextremedev/react-type-check.git",
"author": "Pascal Wegner <flextremedev@gmail.com>",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"prepublishOnly": "concurrently \"yarn run build\" \"yarn run validate\"",
"build": "rollup -c",
"check-types": "tsc --noEmit",
"test-types": "yarn run check-types --project ./testing/tsconfig.test.json",
"test": "jest -c ./testing/jest.config.js",
"test:cov": "yarn run test --coverage",
"validate": "concurrently \"yarn run eslint . --quiet --ext .ts\" \"yarn run check-types\" \"yarn run test-types\" \"yarn run test\"",
"docz:dev": "docz dev",
"docz:build": "docz build",
"docz:serve": "docz build && docz serve",
"docz:deploy": "yarn run docz:build && yarn run gh-pages -d site"
},
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/react": "^16.9.35",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"concurrently": "^5.2.0",
"docz": "^2.3.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"gh-pages": "^3.0.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.7",
"prettier": "^2.0.5",
"react": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.18.1",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.1.0",
"typescript": "^3.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}