This repository was archived by the owner on Jan 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.4 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.4 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
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
{
"name": "cl-form-component",
"description": "React Form component with built-in validation.",
"version": "2.0.1",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"homepage": "http://lindeneg.github.io/cl-form-component",
"author": {
"name": "Christian Lindeneg",
"email": "hi@lindeneg.org",
"url": "https://lindeneg.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lindeneg/cl-form-component.git"
},
"keywords": [
"react",
"react-form",
"react-component",
"form-state",
"form-validation"
],
"license": "MIT",
"peerDependencies": {
"@material-ui/core": ">=4.12.3",
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/react": "^6.2.9",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.22",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"babel-loader": "^8.2.2",
"gh-pages": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.45.2",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"dependencies": {
"cl-use-form-state": "^2.0.3"
},
"scripts": {
"build": "rollup -c",
"test": "jest --verbose",
"test:watch": "yarn test --watch",
"fix": "yarn run style:fix",
"clean": "yarn run clean:soft",
"clean:soft": "rm -rf lib story",
"clean:hard": "yarn run clean && rm -rf node_modules",
"clean:reset": "yarn run clean:hard && rm -f yarn.lock",
"style": "yarn prettier ./src --check",
"style:fix": "yarn prettier ./src --write",
"storybook": "start-storybook -p 6006",
"build-storybook": "rm -rf story && build-storybook -c ./.storybook -o story",
"predeploy": "yarn run build-storybook",
"deploy": "gh-pages -d story"
}
}