-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.29 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
{
"version": "0.7.0",
"license": "MIT",
"name": "@cap-collectif/form",
"author": "Cap Collectif <tech@cap-collectif.com>",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --transpileOnly",
"test": "tsdx test --passWithNoTests",
"ts:check": "tsc --noEmit",
"lint": "eslint src --ext .ts --ext .tsx",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"resolutions": {
"**/typescript": "^4.4.4",
"eslint": "^7.2.8"
},
"peerDependencies": {
"@cap-collectif/ui": ">=1.10.5",
"react": ">=16",
"react-dom": ">=16",
"react-hook-form": ">=7.19.5",
"react-select": "^5.2.1"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"module": "dist/form.esm.js",
"size-limit": [
{
"path": "dist/form.cjs.production.min.js",
"limit": "200 KB"
},
{
"path": "dist/form.esm.js",
"limit": "200 KB"
}
],
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"npx tsdx lint src --fix"
]
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@cap-collectif/ui": "^1.10.14",
"@size-limit/preset-small-lib": "^7.0.5",
"@size-limit/webpack": "^7.0.5",
"@size-limit/webpack-why": "^7.0.5",
"@storybook/addon-essentials": "^6.4.15",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.4.15",
"@storybook/addons": "^6.4.15",
"@storybook/react": "^6.4.15",
"@types/body-scroll-lock": "^3.1.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"babel-loader": "^8.2.3",
"husky": "^7.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.25.1",
"react-intl": "https://github.com/cap-collectif/react-intl#a224d16c7a37884328676e9608987601a7c26205",
"react-is": "^17.0.2",
"size-limit": "^7.0.5",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"dependencies": {
"react-places-autocomplete": "^7.3.0"
}
}