-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 KB
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
{
"name": "@reactway/forms-validators",
"version": "1.0.0",
"description": "Default validators to use with ReactWay forms",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"test": "tsc -p . --noEmit && eslint \"src/**/*.ts*\" -f visualstudio"
},
"keywords": [
"react",
"forms",
"validation",
"ts"
],
"files": [
"dist",
"docs",
"*.js",
"!*.config.js"
],
"types": "dist/index.d.ts",
"author": "Reactway <dev@reactway.com> (https://github.com/reactway)",
"license": "MIT",
"devDependencies": {
"@reactway/eslint-config": "^1.0.3",
"@types/iban": "0.0.30",
"@types/lodash.debounce": "4.0.6",
"@types/react": "16.9.52",
"@types/validator": "13.1.0",
"eslint": "^7.11.0",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"dependencies": {
"@emotion/core": "10.0.35",
"@reactway/forms": "0.0.0-canary.45edc18",
"@reactway/forms-core": "0.0.0-canary.45edc18",
"iban": "0.0.14",
"lodash.debounce": "4.0.8",
"react": "16.13.1",
"validator": "13.1.17"
}
}