This repository has been archived by the owner on May 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.57 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
{
"name": "vehicle-booking-api",
"version": "2.0.7",
"description": "API for vehicle booking.",
"main": "dist/index.js",
"scripts": {
"build": "(rm -r ./dist || true) && tsc && (mkdir ./dist/res) && (cp -r ./src/res/* ./dist/res)",
"dev": "nodemon --watch 'src/**/*.ts' --watch 'src/res/**/*' --ignore 'src/**/*.spec.ts' --exec node -r ts-node/register --inspect=0.0.0.0:9229 src/index.ts",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"update:all": "ego node-install -u -a && cd frontend && ego node-install -u -a"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egodigital/hackathon.git"
},
"keywords": [
"vehicle",
"booking",
"api",
"backend"
],
"author": "e.GO Digital GmbH, Aachen, Germany",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/egodigital/hackathon/issues"
},
"homepage": "https://github.com/egodigital/hackathon#readme",
"devDependencies": {
"@egodigital/tsconfig": "^1.3.0",
"@types/fs-extra": "^8.0.1",
"@types/lodash": "^4.14.144",
"@types/node": "^10.14.22",
"@types/pluralize": "0.0.29",
"ego-cli": "^0.76.2",
"nodemon": "^1.19.4",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.6.4"
},
"dependencies": {
"@egodigital/egoose": "^6.12.0",
"@egodigital/express-controllers": "^5.3.0",
"file-type": "^12.3.0",
"fs-extra": "^8.1.0",
"is-stream": "^2.0.0",
"jimp": "^0.8.4",
"lodash": "^4.17.15",
"nocache": "^2.1.0",
"pluralize": "^8.0.0"
}
}