-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "order",
"version": "1.0.0",
"description": "Projeto para demonstrar a implementação de Rest Api em Clean Architecture.",
"main": "index.js",
"scripts": {
"build:prod": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored",
"server:dev": "cross-env NODE_ENV=dev tsnd -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node-modules --no-notify src/serve.ts",
"server:prod": "node dist/serve.js",
"test": "tsc && jest ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/damtaipu/order.git"
},
"keywords": [
"nodejs",
"express",
"typescript",
"clean",
"archi",
"architecture"
],
"author": "Jose Damiao",
"license": "ISC",
"bugs": {
"url": "https://github.com/damtaipu/order/issues"
},
"homepage": "https://github.com/damtaipu/order#readme",
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/node": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"jest": "^28.1.1",
"ts-jest": "^28.0.5",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"express": "^4.18.1",
"rxjs": "^7.5.5",
"socket.io": "^4.5.1"
}
}