-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.65 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
{
"name": "formtastisch",
"version": "1.1.0",
"description": "Solid performant forms without pain",
"main": "dist/index.umd.min.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"private": false,
"sideEffects": false,
"scripts": {
"test": "jest",
"prepublish": "rimraf ./dist && rollup -c",
"generateApiDocs": "rimraf ./docs/apidocs && typedoc ./src/index.ts --out docs/apidocs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WavyWalk/formtastisch.git"
},
"author": "wavywalk",
"license": "MIT",
"bugs": {
"url": "https://github.com/WavyWalk/formtastisch/issues"
},
"homepage": "https://github.com/WavyWalk/formtastisch#readme",
"devDependencies": {
"@rollup/plugin-babel": "^5.3.0",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.27.1",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"react-test-utils": "0.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.67.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
},
"peerDependencies": {
"react": "^16.8.0 || ^17 || ^18"
}
}