-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.23 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
{
"name": "nodejs-reactive-hexagonal-architecture",
"version": "1.0.0",
"description": "node js project with reactive hexagonal architecture",
"repository": "git@github.com:naspredam/nodejs-reactive-hexagonal-architecture.git",
"author": "naspredam",
"license": "MIT",
"private": false,
"scripts": {
"build": "babel src --out-dir dist --copy-files --extensions '.ts,.js'",
"start": "npm run build && node --trace-warnings dist/index.js",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/ramda": "^0.28.1",
"@types/sinon": "^10.0.11",
"@types/supertest": "^2.0.11",
"babel-plugin-module-resolver": "^4.1.0",
"casual": "^1.6.2",
"jest": "^27.5.1",
"sinon": "^13.0.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"dependencies": {
"express": "^4.17.3",
"maybeasy": "^3.0.0",
"moment-timezone": "^0.5.34",
"ramda": "^0.28.0",
"rxjs": "^7.5.5"
}
}