-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 3.88 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": "typescript-design-patterns-solid",
"version": "1.0.0",
"description": "Advanced course made at udemy with professor Luiz Otavio",
"main": "index.ts",
"repository": "https://github.com/deverebor/typescript-advanced-cource",
"author": "Lucas Souza(deverebor)",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint . --fix",
"creational:singleton": "ts-node --files --transpile-only './src/GOF/creational/singleton/module_b.ts'",
"creational:builder": "ts-node --files --transpile-only './src/GOF/creational/builder/main.ts'",
"creational:proto-js-obj": "node './src/GOF/creational/prototype/js/object.js'",
"creational:proto-js-func": "node './src/GOF/creational/prototype/js/constructor-functions.js'",
"creational:proto-deep": "ts-node --files --transpile-only './src/GOF/creational/prototype/prototype-deep-copy/main.ts'",
"creational:proto-shallow": "ts-node --files --transpile-only './src/GOF/creational/prototype/prototype-shallow-copy/main.ts'",
"creational:factory": "ts-node --files --transpile-only './src/GOF/creational/factory-method/main.ts'",
"creational:abstract-factory": "ts-node --files --transpile-only './src/GOF/creational/abstract-factory/main.ts'",
"structural:composite-classic": "ts-node --files --transpile-only './src/GOF/structural/composite/classic-structure/main.ts'",
"structural:composite-validation": "ts-node --files --transpile-only './src/GOF/structural/composite/validation-structure/main.ts'",
"structural:adapter": "ts-node --files --transpile-only './src/GOF/structural/adapter/main.ts'",
"structural:bridge": "ts-node --files --transpile-only './src/GOF/structural/bridge/main.ts'",
"structural:decorator": "ts-node --files --transpile-only './src/GOF/structural/decorator/main.ts'",
"structural:facade": "ts-node --files --transpile-only './src/GOF/structural/facade/main.ts'",
"structural:proxy": "ts-node --files --transpile-only './src/GOF/structural/proxy/main.ts'",
"structural:flyweight": "ts-node --files --transpile-only './src/GOF/structural/flyweight/main.ts'",
"behavioral:strategy": "ts-node --files --transpile-only './src/GOF/behavioral/strategy/main.ts'",
"behavioral:command": "ts-node --files --transpile-only './src/GOF/behavioral/command/main.ts'",
"behavioral:memento": "ts-node --files --transpile-only './src/GOF/behavioral/memento/main.ts'",
"behavioral:state": "ts-node --files --transpile-only './src/GOF/behavioral/state/main.ts'",
"behavioral:mediator": "ts-node --files --transpile-only './src/GOF/behavioral/mediator/main.ts'",
"start:testPratice": "ts-node --files --transpile-only './src/TestPratice/main.ts'",
"start:srp": "ts-node --files --transpile-only './src/SOLID/single-responsability-principle/main.ts'",
"start:ocp": "ts-node --files --transpile-only './src/SOLID/open-closed-principle/main.ts'",
"start:lsp": "ts-node --files --transpile-only './src/SOLID/liskov-subistitution-principle/main.ts'",
"start:isp": "ts-node --files --transpile-only './src/SOLID/interface-segregation-principle/main.ts'",
"start:dip": "ts-node --files --transpile-only './src/SOLID/dependency-inversion-principle/main.ts'",
"start:legacy": "ts-node --files --transpile-only './src/SOLID/legacy/shopping-cart-legacy.ts'",
"test": "jest",
"test:silent": "jest --watch --silent --noStackTrace --bail --maxWorkers=50%",
"test:coverage": "jest --coverage --silent --noStackTrace --passWithNoTests --bail --maxWorkers=50%"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^18.0.0",
"@types/validator": "^13.7.4",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.2",
"prettier": "^2.6.2",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"validator": "^13.7.0"
}
}