-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.02 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
105
{
"name": "akvo-react-form-editor",
"version": "2.0.2",
"description": "Survey editor for akvo-react-form",
"author": "akvo",
"license": "AGPL-3.0",
"repository": "akvo/akvo-react-form-editor",
"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": "Wayan Galih Pratama",
"email": "[email protected]",
"url": "https://github.com/wayangalihpratama"
},
{
"name": "Akvo Tech Consultancy",
"email": "[email protected]",
"url": "https://github.com/akvo"
}
],
"keywords": [
"form",
"form-editor",
"webforms",
"akvo",
"ant",
"component",
"frontend",
"react",
"react-component"
],
"homepage": "https://akvo.github.io/akvo-react-form-editor/",
"bugs": {
"url": "https://github.com/akvo/akvo-react-form-editor/issues"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs --css-modules 'arfe-[local]'",
"start": "microbundle-crl watch --no-compress --format modern,cjs --css-modules 'arfe-[local]'",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:prettier": "prettier --check src",
"test:lint": "eslint --config .eslintrc.json ./src/ --ext .js,.jsx",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom --transformIgnorePatterns \"node_modules/(?!react-leaflet)/\"",
"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": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-react": "^7.16.7",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"buffer": "^6.0.3",
"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-node": "^11.0.0",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "^4.0.0",
"jest-canvas-mock": "^2.4.0",
"microbundle-crl": "^0.13.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"react-test-renderer": "^18.2.0"
},
"dependencies": {
"akvo-react-form": "^2.5.6",
"antd": "^4.20.0",
"locale-codes": "^1.3.1",
"lodash": "^4.17.21",
"pullstate": "^1.24.0",
"react-color": "^2.19.3",
"react-icons": "^4.4.0"
},
"files": [
"dist"
]
}