forked from nikodraca/music-graph.api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "genre-graph.api",
"version": "1.0.0",
"main": "index.js",
"author": "Niko Draca",
"license": "MIT",
"dependencies": {
"@hapi/boom": "^9.0.0",
"@hapi/joi": "^17.1.0",
"@types/chai": "^4.2.9",
"@types/chai-as-promised": "^7.1.2",
"@types/hapi": "^18.0.3",
"@types/hapi__joi": "^16.0.9",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.1",
"@types/mongodb": "^3.3.16",
"@types/node": "^13.5.0",
"@types/request": "^2.48.4",
"@types/request-promise": "^4.1.45",
"@types/sinon": "^7.5.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"global": "^4.4.0",
"hapi": "^18.1.0",
"lodash": "^4.17.15",
"mocha": "^7.0.1",
"mongodb": "^3.5.2",
"nodemon": "^2.0.2",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"sinon": "^8.1.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"start": "node ./dist/index.js",
"dev": "NODE_ENV=development nodemon --exec 'ts-node --project tsconfig.json' index.ts",
"prettier": "prettier --config .prettierrc --write '**/*.{ts,js,css,html}'",
"test": "mocha --recursive --require ts-node/register tests/**/*.ts --bail"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
}
}