-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
83 lines (83 loc) · 2.34 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
{
"name": "form-gear",
"version": "1.1.1",
"description": "FormGear is a framework engine for dynamic form creation and complex form processing and validation for data collection.",
"info": "It is easy to use and efficiently handle nested inquiries to capture everything down to the last detail. Unlike other similar framework, validation is handled in a FALSE condition in which each field is validated against a test equation. This leads to a more efficient and effective way to validate each component.",
"homepage": "https://solid-form-gear.vercel.app/",
"author": "Ignatius Aditya Setyadi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AdityaSetyadi/form-gear.git"
},
"files": [
"dist"
],
"main": "./dist/form-gear.umd.js",
"module": "./dist/form-gear.es.js",
"exports": {
".": {
"import": "./dist/form-gear.es.js",
"require": "./dist/form-gear.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"keywords": [
"form-gear",
"form-builder",
"survey-builder",
"solid-js",
"data-collection",
"survey",
"census",
"solidhack",
"best_ecosystem"
],
"contributors": [
{
"name": "Ignatius Aditya Setyadi",
"email": "ignatius.aditya.setyadi@gmail.com",
"url": "https://www.linkedin.com/in/adityasetyadi/"
},
{
"name": "Ardian Saputra Hasibuan",
"email": "saputraardian703@gmail.com"
},
{
"name": "D. Agung Sungkono",
"email": "das.agung13@gmail.com"
},
{
"name": "Muhammad Qadri",
"email": "mqad21@gmail.com"
}
],
"scripts": {
"dev": "vite --host",
"build": "vite build",
"serve": "vite preview"
},
"devDependencies": {
"@types/node": "^17.0.31",
"autoprefixer": "^10.4.7",
"postcss": "^8.4.13",
"tailwind-scrollbar": "^1.3.1",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.4",
"vite": "^2.9.8",
"vite-plugin-solid": "^2.2.6"
},
"dependencies": {
"@solid-primitives/debounce": "^1.3.0",
"@solid-primitives/input-mask": "0.0.100",
"@tailwindcss/forms": "^0.4.1",
"@thisbeyond/solid-select": "^0.7.1",
"dayjs": "^1.11.2",
"papaparse": "^5.3.2",
"semver-compare": "^1.0.0",
"signature_pad": "^4.0.5",
"solid-icons": "^1.0.1",
"solid-js": "1.3.17",
"toastify-js": "^1.11.2"
}
}