-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.4 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
53
54
55
56
57
58
{
"name": "justmeat",
"version": "1.0.0",
"description": "",
"main": "app.js",
"directories": {
"lib": "lib"
},
"scripts": {
"dev": "nodemon src/app.ts",
"start": "node lib/app.js",
"build": "tsc -p .",
"test": "jest lib/ "
},
"repository": {
"type": "git",
"url": "git+https://github.com/davideturzo/JustMeat.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/davideturzo/JustMeat/issues"
},
"homepage": "https://github.com/davideturzo/JustMeat#readme",
"devDependencies": {
"@types/chai": "^4.2.5",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/lowdb": "^1.0.9",
"@types/mocha": "^5.2.7",
"@types/mongoose": "^5.5.32",
"@types/node": "^12.12.11",
"@types/password-hash": "^1.2.20",
"@types/supertest": "^2.0.8",
"@types/uuid": "^3.4.6",
"babel-jest": "^24.9.0",
"chai": "^4.2.0",
"jest": "^24.9.0",
"mocha": "^6.2.2",
"nodemon": "^1.19.4",
"supertest": "^4.0.2",
"ts-node": "^8.5.2",
"typescript": "^3.7.2"
},
"dependencies": {
"@types/jsonwebtoken": "^8.3.5",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-validator": "^6.3.1",
"fs": "0.0.1-security",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.12",
"password-hash": "^1.2.2",
"uuid": "^3.3.3",
"uuidv1": "^1.6.14"
}
}