-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.69 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "typescript-mvc",
"version": "1.0.0",
"description": "Tempate para sistemas MVC en Typescript",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production rimraf dist && webpack --config webpack.prod.js",
"eslint": "eslint --fix --ext .ts .",
"nodemon": "nodemon src/server.ts",
"dev": "concurrently 'npm:nodemon' 'npm:build-dev'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yocheco/typescript-mvc.git"
},
"keywords": [
"mvc",
"typescript",
"node"
],
"author": "Sergio Rogelio Sandoval Cabrera",
"license": "ISC",
"bugs": {
"url": "https://github.com/yocheco/typescript-mvc/issues"
},
"homepage": "https://github.com/yocheco/typescript-mvc#readme",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@fortawesome/fontawesome-free": "^6.2.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/express-actuator": "^1.8.0",
"@types/express-handlebars": "^6.0.0",
"@types/express-session": "^1.17.5",
"@types/method-override": "0.0.32",
"@types/morgan": "^1.9.3",
"@types/node": "^18.8.4",
"@types/set-tz": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-loader": "^8.2.5",
"babel-minify-webpack-plugin": "^0.3.1",
"concurrently": "^7.4.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"image-minimizer-webpack-plugin": "^3.6.1",
"imagemin": "^8.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^10.0.1",
"imagemin-webp": "^7.0.0",
"mini-css-extract-plugin": "^2.6.1",
"nodemon": "^2.0.20",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"style-loader": "^3.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"express": "^4.17.3",
"express-actuator": "^1.8.0",
"express-flash-message": "^2.1.0",
"express-handlebars": "^6.0.3",
"express-session": "^1.17.3",
"method-override": "^3.0.0",
"mongoose": "^6.6.5",
"morgan": "^1.10.0",
"path": "^0.12.7",
"rimraf": "^3.0.2",
"set-tz": "^0.2.0",
"ts-loader": "^9.4.1"
}
}