-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.11 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
{
"name": "typescript-design-patterns",
"version": "1.0.0",
"description": "Design Patterns examples written in ts",
"main": "index.js",
"scripts": {
"state": "ts-node ./src/state/hotel-rooms",
"decorator": "ts-node ./src/decorator/starbuzz",
"chain": "ts-node ./src/chain-of-responsability/discounts-calculator/",
"strategy": "ts-node ./src/strategy/ducks-simulator/",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alebagran/typescript-design-patterns.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alebagran/typescript-design-patterns/issues"
},
"homepage": "https://github.com/alebagran/typescript-design-patterns#readme",
"dependencies": {
"store": "^2.0.12"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"prettier": "2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}