-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.15 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
47
48
49
50
{
"name": "one-code",
"version": "1.0.0",
"description": "",
"main": "bootstrap.ts",
"scripts": {
"build": "tsc",
"start": "nodemon lib/bootstrap.js",
"test": "ava lib/tests"
},
"author": "Horizon Four",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "1.0.0",
"@types/dotenv": "4.0.1",
"@types/hapi": "16.1.10",
"@types/joi": "10.4.3",
"@types/jsonwebtoken": "^7.2.3",
"@types/mocha": "2.2.43",
"@types/mongoose": "4.7.23",
"@types/node": "8.0.51",
"@types/vision": "4.1.2",
"bcrypt": "1.0.3",
"boom": "6.0.0",
"dotenv": "4.0.0",
"hapi": "16.6.2",
"hapi-auth-jwt2": "7.3.0",
"hapi-handlers": "2.0.0",
"hapi-router": "3.5.0",
"hapi-swagger": "7.8.1",
"inert": "4.2.1",
"joi": "13.0.0",
"joi-objectid": "2.0.0",
"jsonwebtoken": "^8.1.0",
"mongoose": "4.12.3",
"tslint-config-airbnb": "5.3.0",
"typescript": "2.5.3",
"vision": "4.1.1"
},
"devDependencies": {
"ava": "0.22.0",
"hapi-test-request": "0.0.4",
"mocha": "4.0.1",
"nodemon": "1.12.1"
},
"ava": {
"files": ["lib/tests/*"],
"source": ["**/**.{js,ts}"]
}
}