-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.27 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
{
"name": "10-design-patterns-em-typescript",
"version": "1.0.0",
"description": "Implementação de 10 padrões de design em TypeScript com soluções para problemas reais.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start:all": "npm-run-all start:database start:payment start:chat start:image start:ecommerce start:notifications start:editor start:streaming start:reports start:orders",
"start:database": "ts-node src/singleton/DatabaseConnection.ts",
"start:payment": "ts-node src/factory-method/PaymentMethod.ts",
"start:chat": "ts-node src/observer/Chat.ts",
"start:image": "ts-node src/strategy/Image.ts",
"start:ecommerce": "ts-node src/decorator/Ecommerce.ts",
"start:notifications": "ts-node src/adapter/Notifications.ts",
"start:editor": "ts-node src/command/Editor.ts",
"start:streaming": "ts-node src/proxy/Streaming.ts",
"start:reports": "ts-node src/builder/Reports.ts",
"start:orders": "ts-node src/facade/Orders.ts"
},
"keywords": [
"TypeScript",
"Design Patterns",
"Node.js",
"Software Development"
],
"author": "Diogo Felizardo",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.7.4",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}