-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.45 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
{
"name": "natural-forms",
"version": "0.0.1",
"description": "Unstyled form fields for React with built in validation.",
"author": "Douglas Moura <[email protected]>",
"private": true,
"keywords": [
"form",
"input",
"form validation"
],
"scripts": {
"build": "turbo run build",
"test": "jest",
"lint": "turbo run lint",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"engines": {
"npm": ">=8.3.0",
"node": ">=16.13.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"@babel/core": "^7.17.5",
"@parcel/core": "2.3.2",
"@parcel/packager-ts": "2.3.2",
"@parcel/transformer-typescript-types": "2.3.2",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@swc/core": "^1.2.142",
"@swc/jest": "^0.2.17",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-loader": "^8.2.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.5.7",
"eslint-plugin-testing-library": "^5.0.5",
"husky": ">=6",
"jest": "^27.5.1",
"jest-watch-typeahead": "^1.0.0",
"lint-staged": ">=10",
"prettier": "^2.5.1",
"turbo": "^1.1.3",
"typescript": "^4.5.5",
"webpack": "5"
},
"repository": {
"type": "git",
"url": "https://github.com/DouglasdeMoura/natural-forms"
},
"license": "MIT",
"workspaces": [
"packages/*"
],
"lint-staged": {
"packages/**/*.{ts,js,tsx,jsx,json}": [
"eslint --cache --fix",
"jest --findRelatedTests --bail"
]
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}