-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
{
"name": "gemeinschaft.online_openapi",
"version": "1.0.0",
"description": "",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.4"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.3",
"@types/fs-extra": "^8.1.0",
"@types/jsonwebtoken": "^8.3.8",
"@types/mongoose": "^5.7.6",
"@types/node": "^13.9.1",
"@types/shelljs": "^0.8.6",
"fs-extra": "^8.1.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
},
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts --exec npm run dev:start",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KrisenKulturDE/gemeinschaft.online_openAPI.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/KrisenKulturDE/gemeinschaft.online_openAPI/issues"
},
"homepage": "https://github.com/KrisenKulturDE/gemeinschaft.online_openAPI/#readme"
}