This repository was archived by the owner on Nov 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.52 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
90
91
92
93
94
{
"name": "@truework/forms",
"version": "0.8.8",
"description": "",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"scripts": {
"watch": "microbundle watch --jsx react -f es,cjs",
"build": "microbundle --jsx react -f es,cjs",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook",
"format": "prettier-standard './src/**/*'",
"lint": "prettier-standard './src/**/*' --check"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run lint",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"json",
"ts",
"tsx"
],
"modulePaths": [
"src"
],
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
]
},
"author": "truework",
"license": "MIT",
"homepage": "https://www.truework.com",
"devDependencies": {
"@babel/core": "^7.4.0",
"@storybook/addon-actions": "^5.0.5",
"@storybook/addon-knobs": "^5.0.5",
"@storybook/addon-links": "^5.0.5",
"@storybook/addon-storysource": "^5.0.5",
"@storybook/addons": "^5.0.5",
"@storybook/react": "^5.0.5",
"@truework/ui": "^1.0.5",
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.149",
"@types/react-router-dom": "^5.1.3",
"@types/react-text-mask": "^5.4.8",
"@types/storybook__addon-actions": "^3.4.2",
"@types/storybook__addon-links": "^3.3.4",
"@types/storybook__react": "^4.0.1",
"@types/styled-components": "^5.0.1",
"@types/styled-system": "^5.1.1",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"commitizen": "^4.2.2",
"core-js": "^3.0.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.2.3",
"jest": "^24.5.0",
"microbundle": "^0.11.0",
"prettier": "^2.0.2",
"prettier-standard": "^16.4.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"semantic-release": "^17.3.1",
"styled-components": "^5.2.1",
"styled-system": "^5.1.5",
"ts-jest": "^24.0.0"
},
"peerDependencies": {
"@truework/ui": "^1.0.4-beta.1",
"react": "16.x",
"styled-components": "5.x",
"styled-system": "5.x"
},
"dependencies": {
"formik": "^2.1.5",
"lodash": "^4.17.15",
"moment": "^2.29.1",
"parse-ssn": "^0.3.2",
"react-text-mask": "^5.4.3",
"use-drop": "^0.5.1"
}
}