-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 2.85 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
{
"name": "akvo-react-form",
"version": "2.5.6",
"description": "Simple react component for building webforms",
"license": "AGPL-3.0",
"repository": "akvo/akvo-react-form",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=14.x"
},
"contributors": [
{
"name": "Deden Bangkit",
"email": "[email protected]",
"url": "https://github.com/dedenbangkit"
},
{
"name": "Akvo Tech Consultancy",
"email": "[email protected]",
"url": "https://github.com/akvo"
}
],
"keywords": [
"form",
"webforms",
"akvo",
"ant",
"component",
"frontend",
"react",
"react-component"
],
"homepage": "https://akvo.github.io/akvo-react-form/",
"bugs": {
"url": "https://github.com/akvo/akvo-react-form/issues"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs --css-modules 'arf-[local]'",
"start": "microbundle-crl watch --no-compress --format modern,cjs --css-modules 'arf-[local]'",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint --config .eslintrc.json ./src/ --ext .js,.jsx",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"resolutions": {
"autoprefixer": "^9.0.0"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-react": "^7.16.7",
"cross-env": "^7.0.2",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-export": "^0.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^4.0.0",
"microbundle-crl": "^0.13.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "^5.0.1"
},
"files": [
"dist"
],
"dependencies": {
"@react-leaflet/core": ">=1.0.0 <1.1.0 || ^1.1.1",
"antd": "^4.20.0",
"antd-table-saveas-excel": "^2.2.1",
"axios": "^0.23.0",
"dexie": "^3.2.2",
"html-react-parser": "^1.4.10",
"leaflet": "^1.7.1",
"locale-codes": "^1.3.1",
"lodash": "^4.17.21",
"pullstate": "^1.24.0",
"react-html-parser": "^2.0.2",
"react-icons": "^4.3.1",
"react-leaflet": "^4.0.2",
"uuid": "^9.0.1"
}
}