-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "2do-server",
"version": "1.2.5",
"description": "Fetch hypergrid calendars from different sources and generate the pages for the web interface and for the boards synchronisation",
"main": "index.js",
"directories": {
"doc": "doc",
"lib": "lib"
},
"scripts": {
"start": "webpack serve --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git@git.magiiic.com:opensimulator/2do-server.git"
},
"keywords": [
"opensimulator",
"hypergrid",
"events",
"calendar",
"agenda",
"helpers"
],
"author": "Olivier van Helden",
"license": "GPL-3.0-or-later",
"dependencies": {
"dayjs": "^1.11.7",
"jquery": "^3.6.4",
"jstz": "^2.1.1"
},
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"csv-loader": "^3.0.5",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1",
"webpack-dev-middleware": "^6.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0",
"xml-loader": "^1.2.1"
}
}