-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.1 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
{
"name": "@simomosi/dynamic-forms",
"version": "2.0.0",
"description": "DynamicForms is a js library that handles all interactions in forms with dynamic content (e.g. select with variable options, updating rules and visibility changes depending on fields' state).",
"main": "dist/dynamicforms.min.js",
"browser": "dist/dynamicforms.min.js",
"module": "src/index.ts",
"files": [
"dist",
"src"
],
"author": "simomosi (https://github.com/simomosi)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/simomosi/dynamic-forms.git"
},
"homepage": "https://simomosi.github.io/dynamic-forms/",
"bugs": "https://github.com/simomosi/dynamic-forms/issues",
"keywords": [
"form",
"dynamic",
"update",
"rule",
"visibility",
"select",
"option",
"dropdown",
"async",
"promise",
"declarative",
"json",
"configuration",
"vanilla",
"javascript",
"progressive",
"filtering",
"typescript",
"webpack",
"babel"
],
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.21.4",
"@babel/runtime": "^7.12.5",
"@mermaid-js/mermaid-cli": "^10.1.0",
"@webpack-cli/init": "^1.0.3",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^4.5.0",
"mermaid": "^10.1.0",
"source-map-loader": "^4.0.1",
"terser-webpack-plugin": "^5.0.3",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.7.3"
},
"scripts": {
"build": "yarn build:dev && yarn build:prod",
"build:dev": "webpack --env this_env=development",
"build:prod": "webpack --env this_env=production"
}
}