-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
79 lines (79 loc) · 2.35 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
{
"name": "fielder",
"version": "0.0.0",
"description": "A field-first form library for React and React Native",
"main": "dist/index.js",
"module": "dist/index.es.js",
"umd:main": "dist/index.umd.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"keywords": [
"fielder",
"react",
"form",
"dynamic",
"validation"
],
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"docs/src/pages",
"dist",
"preact/dist",
"src",
"preact/src",
"preact/package.json"
],
"scripts": {
"start": "rollup -c rollup.config.js --watch",
"test": "jest",
"build": "npm run build:react && npm run build:preact",
"build:react": "rm -rf dist && rollup -c rollup.config.js",
"build:preact": "rm -rf preact/dist && PREACT=true rollup -c rollup.config.js",
"check-formatting": "prettier --check \"./**/*.{ts,tsx,md,mdx,html}\" \"!./CHANGELOG.md\"",
"lint": "eslint -c .eslintrc \"src/**.{ts,tsx}\"",
"changelog": "docker run -it --rm -v \"$(pwd)\":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u andyrichardson -p fielder"
},
"author": "Andy Richardson (andyrichardson)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/andyrichardson/fielder.git"
},
"bugs": {
"url": "https://github.com/andyrichardson/fielder/issues"
},
"homepage": "https://fielder.andyrichardson.dev",
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/plugin-syntax-typescript": "^7.12.13",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"preact": "^10.5.9",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"rollup": "^2.40.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.2",
"tslib": "^2.1.0",
"typescript": "^4.2.2"
},
"optionalDependencies": {
"preact": ">=10.5.9",
"react": ">=16.8.0"
}
}