-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
61 lines (61 loc) · 1.58 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
{
"name": "abaplint-sci-server",
"version": "1.0.0",
"private": true,
"description": "testing",
"main": "build/index.js",
"bin": {
"abaplint-backend": "build/index.js"
},
"scripts": {
"run": "ts-node index.ts",
"lint": "eslint index.ts src/**/*.ts",
"build": "tsc && cp -R public ./build",
"dev": "nodemon",
"dev:debug": "nodemon --inspect",
"test": "jest",
"posttest": "npm run lint",
"test:watch": "jest --watch",
"start": "node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abaplint/abaplint-sci-server.git"
},
"author": "Lars Hvam Petersen",
"license": "MIT",
"bugs": {
"url": "https://github.com/abaplint/abaplint-sci-server/issues"
},
"engines": {
"node": "16.x.x"
},
"homepage": "https://github.com/abaplint/abaplint-sci-server#readme",
"dependencies": {
"@abaplint/core": "^2.113.42",
"commander": "^8.3.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"helmet": "^4.6.0",
"morgan": "^1.10.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/helmet": "4.0.0",
"@types/jest": "^29.5.13",
"@types/morgan": "^1.9.6",
"@types/node": "^22.9.0",
"@types/serve-favicon": "^2.5.7",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"supertest": "^6.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}