-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.41 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "priple_pizza_delivery_api_ha2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run lint",
"serve": "npm run build && node dist/index.js",
"watch-node": "nodemon dist/index.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test-cov": "npm run test && codecov",
"test": "jest --coverage --verbose --colors",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/index.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/codingonHP/Priple_Pizza_Delivery_API_HA2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/codingonHP/Priple_Pizza_Delivery_API_HA2/issues"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!/node_modules/",
"!test/**/*.{js,ts,jsx}",
"!src/**/fake.{js,jsx,ts}"
],
"coverageReporters": [
"json",
"html"
]
},
"homepage": "https://github.com/codingonHP/Priple_Pizza_Delivery_API_HA2#readme",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/jest": "^23.3.1",
"@types/mock-fs": "^3.6.30",
"@types/mongodb": "^3.1.4",
"@types/node": "^10.9.4",
"@types/sinon": "^5.0.2",
"@types/supertest": "^2.0.5",
"chai": "^4.1.2",
"codecov": "^3.6.5",
"concurrently": "^4.0.1",
"jest": "^23.5.0",
"mock-fs": "^4.6.0",
"mongodb": "^3.1.4",
"nodemon": "^1.18.3",
"sinon": "^6.1.5",
"supertest": "^3.1.0",
"ts-jest": "^23.1.4",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.10.0",
"typescript": "^3.0.1"
},
"dependencies": {
"npm": "^6.13.4"
}
}