-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.36 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": "pizzacalculator-backend",
"version": "1.0.0",
"description": "Service backend to calculate pizza orders for big groups",
"main": "server.js",
"scripts": {
"db-creation": "ts-node src/db-creator.ts",
"prod": "ts-node src/server.ts",
"start": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SMH-PizzaCalculator/PizzaCalculator-backend.git"
},
"keywords": [
"REST",
"NodeJS",
"express",
"Pizza"
],
"author": "spethso",
"license": "MIT",
"bugs": {
"url": "https://github.com/SMH-PizzaCalculator/PizzaCalculator-backend/issues"
},
"homepage": "https://github.com/SMH-PizzaCalculator/PizzaCalculator-backend#readme",
"dependencies": {
"@types/compression": "0.0.36",
"@types/express": "^4.16.1",
"@types/hashmap": "^2.0.29",
"@types/sqlite3": "^3.1.5",
"@types/uuid": "^3.4.4",
"compression": "^1.7.3",
"crypto": "^1.0.1",
"express": "^4.16.4",
"fs": "0.0.1-security",
"hashmap": "^2.3.0",
"nodemon": "^1.18.10",
"set": "^1.1.1",
"sqlite3": "^4.0.6",
"ts-node": "^8.0.3",
"typescript": "^3.4.2",
"uuid": "^3.3.2"
}
}