-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.32 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.32 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
{
"name": "express-oop-concept",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/bin/www.js",
"debug": "export NODE_CONFIG_ENV=development || set NODE_CONFIG_ENV=development && node --inspect --max-old-space-size=8192 ./bin/www -n 'bse-api' | pino-pretty -t SYS:standard",
"test": "npm run unit",
"integ": "NODE_CONFIG_ENV=test TS_NODE_FILES=true mocha -r ts-node/register -r source-map-support/register 'src/test/integ/**/*.test.ts' --exit",
"unit": "NODE_CONFIG_ENV=test TS_NODE_FILES=true mocha -r ts-node/register -r source-map-support/register 'src/test/unit/**/*.test.ts' --exit",
"prewatch": "rm -rf dist",
"watch": "tsc --watch",
"prebuild": "rm -rf dist",
"build": "tsc",
"lint": "tslint --project . --fix",
"gulp": "gulp"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"config": "^3.3.6",
"express": "^4.17.1"
},
"devDependencies": {
"@types/config": "^0.0.38",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"@types/supertest": "^2.0.11",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"source-map-support": "^0.5.19",
"supertest": "^6.1.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}