-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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
{
"name": "node-cds-hooks-starter",
"version": "1.0.0",
"description": "A starter project emphasizing best practices for creating CDS Services",
"main": "main.js",
"author": "Asymmetrik Ltd.",
"private": true,
"contributors": [
"Jon Lee <[email protected]>",
"Shane O'Neill <[email protected]>",
"Sumeet Shah <[email protected]>",
"Tracy Nguyen <[email protected]>"
],
"directories": {
"doc": "doc"
},
"scripts": {
"develop": "node src/scripts/nodemon.js",
"start": "node src/scripts/serve.js",
"test": "jest",
"prettier": "prettier \"src/**/*.js\" --write",
"changelog": "conventional-changelog -p angular -s -i CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/asymmetrik/carejourney-cds.git"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/src/config/env/test.js"
],
"verbose": true,
"collectCoverage": true,
"coverageReporters": [
"text",
"lcov",
"json"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/src/profiles"
]
},
"license": "ISC",
"homepage": "https://bitbucket.org/asymmetrik/carejourney-cds#readme",
"dependencies": {
"body-parser": "^1.19.0",
"conventional-changelog-cli": "^2.0.34",
"cors": "^2.8.5",
"express": "^4.17.1",
"lodash": "^4.17.19",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"nodemon": "^1.19.4",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.2.1"
},
"devDependencies": {
"eslint": "^7.0.0",
"jest": "^26.0.1",
"prettier": "^2.0.5"
}
}