-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.3 KB
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": "vosapi",
"version": "0.1.0",
"description": "Node.js Backend with a REST-API for VOSWEB",
"author": "Manuel Schierenberg",
"private": true,
"license": "MIT",
"scripts": {
"dev": "tsnd --clear ./src/app.ts",
"build": "rm -rf dist/ && tsc && npm run copy",
"copy": "cp package*.json dist/ && cp -r views/ dist/",
"start": "node ./dist/app.js",
"lint": "eslint .",
"watch": "ts-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vosweb-info/VOSAPI.git"
},
"dependencies": {
"axios": "^0.21.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"morgan": "^1.10.0",
"nodemailer": "^6.5.0",
"nodemailer-express-handlebars": "^4.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.35",
"@types/nodemailer": "^6.4.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
}
}