-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.22 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.22 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "node-starter",
"version": "0.1.0",
"description": "Enterprise Node(TypeScript) Starter project using DDD",
"main": "index.js",
"scripts": {
"start": "npm run build && node build/index.js",
"test": "jest",
"test:dev": "jest --watchAll",
"dev": "nodemon",
"build": "rimraf ./build && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/204070/node-starter.git"
},
"keywords": [
"DDD",
"Enterprise",
"Node",
"Clean",
"Architecture"
],
"author": "Oluwaseun Akinwunmi",
"license": "MIT",
"bugs": {
"url": "https://github.com/204070/node-starter/issues"
},
"homepage": "https://github.com/204070/node-starter#readme",
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/morgan": "^1.9.1",
"@types/node": "^14.6.2",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@elastic/elasticsearch": "7.8.0",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/uuid": "^8.3.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"morgan": "^1.10.0",
"uuid": "^8.3.0",
"winston": "^3.3.3",
"winston-elasticsearch": "^0.10.0"
}
}