-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1018 Bytes
/
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
{
"name": "cdt_box",
"version": "1.0.0",
"description": "microservice for interfacing with Box API",
"main": "./dist/server.js",
"scripts": {
"tsc": "tsc -p ./tsconfig.json",
"start": "node --no-lazy ./dist/server.js",
"debug": "nodemon",
"docker-compose-debug": "docker-compose up --build --force-recreate",
"test": "mocha -r ts-node/register -r dotenv/config -w --watch-extensions ts,tsx --recursive src/**/*.{ts,tsx}",
"test-unit": "NODE_ENV=test mocha --require co-mocha 'dist/*.spec.js'",
"dev-test-watch": "mocha-typescript-watch"
},
"author": "Barak Ben-David",
"license": "MIT",
"dependencies": {
"express": "^4.16.2",
"typegoose": "^4.0.1"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-http": "^3.0.3",
"@types/express": "^4.11.1",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.0",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"mocha": "^5.0.0",
"nodemon": "^1.14.12",
"typescript": "^2.7.1"
}
}