-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.59 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
{
"name": "abfallalarm",
"displayName": "AbfallAlarm",
"version": "0.1.5",
"description": "AbfallAlarm ist eine intuitive und benutzerfreundliche WebApp, die darauf abzielt, das Leben der Bürger von Arnsberg zu vereinfachen, indem sie eine zuverlässige Erinnerungsfunktion für den städtischen Abfallkalender bietet.",
"main": "index.js",
"scripts": {
"build:patch": "npm run bump-version patch && webpack --config webpack.config.js --mode production && npm run copy-release && npm run zip-release",
"build:minor": "npm run copy-release && webpack --config webpack.config.js --mode production && npm run zip-release",
"build:major": "npm run bump-version major && webpack --config webpack.config.js --mode production && npm run copy-release && npm run zip-release",
"bump-version": "node bump-version.js",
"copy-release": "node copy-release-docs.js",
"zip-release": "node zip-release.js",
"start": "webpack serve --config webpack.config.js --mode development",
"stop": "sh stop-server.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PxaMMaxP/AbfallAlarm.git"
},
"keywords": [],
"author": "M. Passarello",
"license": "MIT",
"bugs": {
"url": "https://github.com/PxaMMaxP/AbfallAlarm/issues"
},
"homepage": "https://github.com/PxaMMaxP/AbfallAlarm#readme",
"devDependencies": {
"archiver": "^6.0.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"fs-extra": "^11.2.0",
"ical.js": "^1.5.0"
}
}