-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.29 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.29 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
{
"name": "layering-poc",
"version": "1.0.0",
"main": "index.js",
"author": "spruce-bruce <aaron@synapsestudios.com>",
"license": "MIT",
"scripts": {
"start": "nodemon index.js",
"knex": "knex --knexfile database/knexfile.js",
"lint": "eslint '*/**/*.{js,ts}'",
"test": "lab -v --sourcemaps --transform node_modules/lab-transform-typescript",
"test:watch": "nodemon -e js,ts -x lab --sourcemaps --transform node_modules/lab-transform-typescript"
},
"dependencies": {
"@hapi/hapi": "^19.1.1",
"@hapi/inert": "^6.0.1",
"@hapi/joi": "^17.1.1",
"@hapi/vision": "^6.0.0",
"dinero.js": "^1.8.1",
"hapi-swagger": "^13.0.1",
"haute-couture": "^3.5.0",
"js-data": "3.0.2",
"js-data-sql": "^1.0.1",
"pg": "^8.2.1",
"ramda": "^0.27.0",
"uuid": "^8.1.0"
},
"devDependencies": {
"@hapi/code": "^8.0.1",
"@hapi/lab": "^22.0.4",
"@types/dinero.js": "^1.6.4",
"@types/hapi": "^18.0.3",
"@types/hapi__joi": "^17.1.0",
"@types/node": "^14.0.5",
"@types/ramda": "^0.27.6",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"lab-transform-typescript": "^3.0.1",
"nodemon": "^2.0.4",
"typescript": "^3.9.3"
}
}