-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.89 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
{
"dependencies": {
"@bugsnag/js": "^7.5.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.0",
"pino": "^6.3.2",
"pino-http": "^5.2.0"
},
"devDependencies": {
"@types/bugsnag": "^3.1.0",
"@types/chai": "^4.2.11",
"@types/dotenv": "^8.2.0",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.7",
"@types/mocha": "^7.0.2",
"@types/mock-require": "^2.0.0",
"@types/node": "^13.11.1",
"@types/pino": "^6.3.0",
"@types/pino-http": "^5.0.3",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"chai": "^4.2.0",
"concurrently": "^5.2.0",
"eslint": "^5.14",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^7.1.1",
"mock-require": "^3.0.3",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"supertest": "^5.0.0",
"ts-mocha": "^7.0.0",
"typescript": "^3.9.5"
},
"scripts": {
"ci": "npm run lintci && npm run tsc && npm run test",
"debug": "npm run build && npm run watch-debug",
"lint": "node_modules/.bin/eslint . --ext .js,.jsx,.ts,.tsx --fix",
"lintci": "node_modules/.bin/eslint . --ext .js,.jsx,.ts,.tsx",
"serve": "node dist/server.js",
"serve-debug": "nodemon --inspect-brk dist/server.js",
"serve-debug-cli": "node inspect dist/server.js",
"tsc": "tsc",
"test": "NODE_ENV=test ts-mocha test/**/*.spec.ts",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"watch-node": "nodemon dist/server.js",
"watch-test": "npm run test -- --watchAll",
"watch-ts": "tsc -w"
}
}