-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.73 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
51
52
53
54
55
56
57
58
59
60
{
"name": "playtime",
"version": "0.10.1",
"description": "A Playlist application for the HDip in Computing, WIT",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node src/server.js",
"dev": "./node_modules/.bin/nodemon src/server.js --ignore 'src/models/json/*.json'",
"lint": "./node_modules/.bin/eslint . --ext .js",
"test": "./node_modules/mocha/bin/_mocha --ui tdd test/**/*.js -exit -t 10000",
"testmodels": "./node_modules/mocha/bin/_mocha --ui tdd test/models/**/*.js -exit",
"testapi": "./node_modules/mocha/bin/_mocha --ui tdd test/api/**/*.js -exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wit-hdip-comp-sci-2021/playtime.git"
},
"keywords": [
"node",
"hapi"
],
"author": "edeleastar",
"license": "ISC",
"bugs": {
"url": "https://github.com/wit-hdip-comp-sci-2021/playtime/issues"
},
"homepage": "https://github.com/wit-hdip-comp-sci-2021/playtime#readme",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/cookie": "^12.0.1",
"@hapi/hapi": "^21.3.12",
"@hapi/inert": "^7.1.0",
"@hapi/vision": "^7.0.3",
"dotenv": "^16.4.7",
"handlebars": "^4.7.8",
"hapi-auth-jwt2": "^11.0.0",
"hapi-swagger": "^17.3.2",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"lowdb": "^7.0.1",
"mais-mongoose-seeder": "^1.0.7",
"mongoose": "^8.11.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"axios": "^1.8.1",
"chai": "^5.2.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-import": "^2.31.0",
"mocha": "^11.1.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.3"
},
"engines": {
"node": ">=16"
}
}