-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.76 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
{
"name": "open-table-maintenance",
"private": true,
"version": "1.0.0",
"description": "open-table-maintenance",
"scripts": {
"lint": "abaplint",
"transpile": "rm -rf output && abap_transpile",
"unit": "npm run transpile && echo RUNNING && node output/index.mjs",
"test": "npm run lint && npm run downport && npm run unit",
"downport": "rm -rf downport && cp -r src downport && cp test/*.abap downport && cp test/*.xml downport && abaplint --fix abaplint-downport.jsonc",
"playwright": "npx playwright test",
"start-local": "npm run lint && npm run downport && npm run transpile && node test/index.mjs",
"cf:build": "mbt build -s cf/ --mtar open-table-maintenance.mtar",
"cf:deploy": "cf deploy cf/mta_archives/open-table-maintenance.mtar",
"web": "webpack serve --mode development --env development",
"web:build": "webpack --mode development --env development",
"cf:undeploy": "cf undeploy open-table-maintenance"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-abap/open-table-maintenance.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/open-abap/open-table-maintenance/issues"
},
"homepage": "https://github.com/open-abap/open-table-maintenance#readme",
"dependencies": {
"@abaplint/cli": "^2.106.5",
"@abaplint/database-sqlite": "^2.8.0",
"@abaplint/runtime": "^2.8.22",
"@abaplint/transpiler-cli": "^2.8.22",
"@playwright/test": "^1.42.1",
"buffer": "^6.0.3",
"web-encoding": "^1.1.5",
"copy-webpack-plugin": "^12.0.2",
"crypto-browserify": "^3.12.0",
"express": "^4.19.2",
"html-webpack-plugin": "^5.6.0",
"path-browserify": "^1.0.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}