-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
64 lines (64 loc) · 2.2 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
64
{
"name": "TypeScript-4-Design-Patterns-and-Best-Practices",
"version": "1.0.0",
"description": "TypeScript 4 Design Patterns and Best Practices Book, Published by Packt",
"main": "index.js",
"dependencies": {
"body-parser": "^1.19.0",
"fp-ts": "^2.9.5",
"immutable": "^4.0.0-rc.12",
"inversify": "^5.0.5",
"inversify-express-utils": "^6.3.2",
"lodash": "^4.17.21",
"monocle-ts": "^2.3.10",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"ramda": "^0.27.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.7"
},
"devDependencies": {
"@types/immutable": "^3.8.7",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/node-fetch": "^2.5.10",
"@types/ramda": "^0.27.40",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/reflect-metadata": "^0.1.0",
"cross-env": "^7.0.3",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.2",
"webpack": "^5.24.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"build": "npx tsc --build chapters",
"clean": "npx rimraf dist",
"build:webpack:chapter2": "webpack -c chapters/chapter-2_Core_Principles_and_use_cases/webpack/webpack.config.js",
"serve:webpack:chapter2": "webpack serve --mode development -c chapters/chapter-2_Core_Principles_and_use_cases/webpack/webpack.config.js",
"serve:react:chapter2": "webpack serve --mode development -c chapters/chapter-2_Core_Principles_and_use_cases/react/webpack.config.js",
"rebuild": "npm run clean && npm run build",
"ts": "ts-node",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PacktPublishing/TypeScript-4-Design-Patterns-and-Best-Practices.git"
},
"keywords": [],
"author": "Theo Despoudis",
"license": "ISC",
"bugs": {
"url": "https://github.com/PacktPublishing/TypeScript-4-Design-Patterns-and-Best-Practices/issues"
},
"homepage": "https://github.com/PacktPublishing/TypeScript-4-Design-Patterns-and-Best-Practices#readme"
}