-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
104 lines (104 loc) · 3.17 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
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
{
"name": "formol",
"version": "4.0.7",
"description": "An opinionated react form framework.",
"main": "lib/formol.js",
"module": "src/index.js",
"repository": "https://github.com/Kozea/formol",
"author": "Florian Mounier",
"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.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/register": "^7.24.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.3.0",
"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": "2.11.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.8",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-react": "^7.36.1",
"html-webpack-plugin": "^5.6.0",
"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",
"moment": "^2.30.1",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"quill-image-resize-module-react": "^3.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-syntax-highlighter": "^12.2.1",
"react-test-renderer": "^16.14.0",
"sass": "^1.79.3",
"sass-loader": "^8.0.2",
"scudd": "^0.0.1",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"files": [
"lib/",
"src/"
],
"importSort": {
".js, .jsx": {
"parser": "babylon",
"style": "module"
}
},
"dependencies": {
"@babel/runtime": "^7.25.6",
"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.10",
"zxcvbn": "^4.4.2"
},
"peerDependencies": {
"date-fns": "^2.0.0-alpha.25",
"react": "^16.x.x",
"react-dom": "^16.x.x",
"react-icons": "^3.x.x"
},
"resolutions": {
"cheerio": "1.0.0-rc.3"
}
}