This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.96 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": "@trialspark/ts-form",
"version": "0.0.0",
"description": "A form library for React with a trustworthy, typed, API.",
"keywords": [
"form",
"typescript",
"react"
],
"main": "dist/index.js",
"files": [
"dist/**"
],
"scripts": {
"test": "jest",
"build": "tsc -p ./tsconfig.json",
"check-types": "tsc -p ./tsconfig.json --noEmit && tsc -p ./tsconfig.test.json --noEmit",
"lint": "eslint --ext .ts,.tsx .",
"prepublishOnly": "yarn build && yarn check-types && yarn lint && yarn test"
},
"repository": "[email protected]:trialspark/ts-form.git",
"author": "TrialSpark, Inc.",
"license": "MIT",
"devDependencies": {
"@types/enzyme": "^3.9.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"husky": "^2.4.0",
"jest": "^24.8.0",
"lint-staged": "^8.2.0",
"prettier": "1.18.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn build && yarn check-types && lint-staged"
}
},
"lint-staged": {
"**/*.ts": [
"yarn prettier --write",
"yarn lint",
"git add"
],
"**/*.{js,json,css,md}": [
"yarn prettier --write",
"git add"
]
},
"dependencies": {
"@trialspark/getter-to-string": "^0.1.0",
"@types/lodash": "^4.14.121",
"lodash": "^4.17.11",
"utility-types": "^3.4.1"
},
"peerDependencies": {
"react": "^16.3.0"
}
}