-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
121 lines (121 loc) · 4.16 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@entryscape/rdforms",
"description": "RDForms (aka RDF Forms) is a JavaScript library that uses templates to describe how to edit, present and validate RDF. The library is intended to be used in web applications to ease the burden of developers to deal natively with RDF.",
"keywords": [
"RDF",
"editor",
"metadata",
"application profile",
"linked data"
],
"version": "10.14.0-dev",
"main": "dist/rdforms.node.js",
"browser": "dist/rdforms.react.js",
"module": "main.js",
"repository": "https://bitbucket.org/metasolutions/rdforms.git",
"license": "LGPL-3.0-only",
"homepage": "https://rdforms.org",
"peerDependencies": {
"@entryscape/rdfjson": "2.7.7"
},
"dependencies": {
"@entryscape/rdfjson": "2.7.7",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@fortawesome/fontawesome-free": "^5.8.1",
"@mui/icons-material": "^5.0.3",
"@mui/material": "^5.0.3",
"@mui/styles": "^5.0.1",
"@mui/x-date-pickers": "^5.0.0-beta.7",
"@selectize/selectize": "^0.13.5",
"arrive": "^2.4.1",
"bootstrap": "^4.6.2",
"bootstrap-datepicker": "^1.9.0",
"bootstrap-material-datetimepicker": "https://bitbucket.org/metasolutions/bootstrap-material-datetimepicker.git#webpack",
"bootstrap-material-design": "^4.1.1",
"circular-dependency-plugin": "^5.2.2",
"core-js": "^3.4.0",
"ifdef-loader": "^2.1.1",
"jquery": "^3.7.0",
"jquery-mousewheel": "^3.1.13",
"lodash-es": "^4.17.10",
"moment": "^2.22.2",
"nls-loader": "https://bitbucket.org/metasolutions/nls-loader#master",
"node-fetch": "^2.6.0",
"popper.js": "^1.16.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hooks-lib": "^0.1.5",
"regenerator-runtime": "^0.13.2",
"select2": "4.0.8",
"selectize-bootstrap4-theme": "^2.0.2",
"sizzle": "^2.3.3",
"terser-webpack-plugin": "^1.3.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"@babel/plugin-transform-react-jsx": "^7.16.0",
"@babel/preset-env": "^7.18.6",
"babel-loader": "^8.2.3",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.5.1",
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-requirejs": "^3.1.1",
"html-loader": "^3.0.1",
"html-webpack-plugin": "^5.5.0",
"html-webpack-tags-plugin": "^3.0.2",
"imports-loader": "^0.8.0",
"mini-css-extract-plugin": "^0.4.1",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"parallel-webpack": "^2.6.0",
"q": "^1.5.0",
"raw-loader": "^4.0.2",
"style-loader": "^3.3.1",
"svg-inline-loader": "^0.8.0",
"ttf-loader": "^1.0.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2",
"webpack-merge": "^5.8.0"
},
"files": [
"dist",
"src",
"main*",
"renderers"
],
"scripts": {
"build:all": "webpack --mode=production --config webpack.all.js",
"build:node": "webpack --config webpack.node.js",
"build:node:dev": "webpack --mode=development --config webpack.node.js",
"build:samples": "webpack --config webpack.samples.js",
"dev:bmd": "webpack serve --config webpack.dev.js",
"dev:bootstrap": "webpack serve --config webpack.dev.js --env type=bootstrap",
"dev:jquery": "webpack serve --config webpack.dev.js --env type=jquery",
"dev:react": "webpack serve --config webpack.dev.js --env type=react",
"serve:samples": "webpack serve --config webpack.samples.serve.js"
},
"author": {
"name": "Matthias Palmér",
"email": "matthias@metasolutions.se",
"url": "https://entryscape.com/"
},
"contributors": [
{
"name": "Valentino Hudhra",
"email": "valentino@metasolutions.se",
"url": "http://valentinohudhra.com/"
}
]
}