-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 898 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 898 Bytes
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
{
"name": "pizzatime-server",
"version": "1.0.0",
"description": "PizzaTime API Server",
"main": "index.js",
"scripts": {
"start": "node index2.js",
"run-dev": "nodemon index2.js",
"populate-db": "node setup-scripts/populate-db.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TooeleTechSoftDev/PizzaTime-Server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TooeleTechSoftDev/PizzaTime-Server/issues"
},
"homepage": "https://github.com/TooeleTechSoftDev/PizzaTime-Server#readme",
"dependencies": {
"ajv": "^6.10.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"lodash": "^4.17.15",
"mongodb": "^3.3.2"
},
"devDependencies": {
"nodemon": "^1.19.2"
}
}