-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.28 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.28 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "formol",
"version": "4.3.2",
"description": "An opinionated react form framework.",
"main": "lib/formol.js",
"module": "src/index.js",
"repository": "https://github.com/Kozea/formol",
"author": "Kozea dev team <dev@kozea.fr>",
"license": "MIT",
"scripts": {
"build": "rimraf lib && webpack",
"lint": "eslint src test",
"fix": "prettier --write **/*.{js,jsx}",
"test": "jest --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls",
"test-debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"prepublish": "npm run build",
"demos": "webpack-dev-server --config webpack.config.demos.js --mode development",
"demos-build": "rimraf demos/dist && webpack --config webpack.config.demos.js --mode production",
"demos-deploy": "./demos/deploy.sh"
},
"pre-commit": "lint,test",
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.29.0",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@babel/register": "^7.28.6",
"@eslint/compat": "^1.4.1",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.4.1",
"babel-plugin-add-react-static-displayname": "^0.0.2",
"babel-plugin-dynamic-import-node": "^2.3.3",
"coveralls": "^3.1.1",
"css-loader": "^3.6.0",
"date-fns": "^4.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.8",
"eslint": "^9.39.4",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.5.0",
"html-webpack-plugin": "^5.6.6",
"import-sort": "^6.0.0",
"import-sort-cli": "^6.0.0",
"import-sort-parser-babylon": "^6.0.0",
"import-sort-style-module": "^6.0.0",
"jest": "^25.5.4",
"mini-css-extract-plugin": "^0.9.0",
"pre-commit": "^1.2.2",
"prettier": "^3.8.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0",
"sass": "^1.99.0",
"sass-loader": "^8.0.2",
"webpack": "^5.106.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.3"
},
"files": [
"lib/",
"src/"
],
"importSort": {
".js, .jsx": {
"parser": "babylon",
"style": "module"
}
},
"dependencies": {
"@babel/runtime": "^7.29.2",
"bemboo": "^2.0.0",
"fast-deep-equal": "^3.1.3",
"js-search": "^2.0.1",
"react-datepicker": "^3.8.0",
"react-day-picker": "^7.4.10",
"react-dropzone": "^10.2.2",
"react-icons": "^3.11.0",
"react-quill": "^1.3.5",
"react-select": "^3.2.0",
"react-text-mask": "^5.5.0",
"react-window": "^1.8.11",
"zxcvbn": "^4.4.2"
},
"peerDependencies": {
"date-fns": "^4.1.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-icons": "^3.11.0"
},
"resolutions": {
"cheerio": "1.0.0-rc.3"
},
"engines": {
"node": "20.x || 22.x || 24.x"
}
}