-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.26 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.26 KB
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
{
"name": "ExpressTypeScript",
"version": "1.0.0",
"description": "TypeScript Basic",
"main": "./dist/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "yarn webpack-watch",
"build": "webpack",
"webpack-watch": "webpack --watch --colors",
"server-watch": "nodemon --watch dist/server.js dist/server.js"
},
"repository": "https://github.com/codevjs/Express-TypeScript.git",
"author": "Renaldi Pranata",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.5",
"@types/helmet": "^0.0.45",
"babel-loader": "^8.1.0",
"babel-plugin-import-directory": "^1.1.0",
"babel-plugin-wildcard": "^6.0.0",
"source-map-loader": "^0.2.4",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2",
"webpack-shell-plugin": "^0.5.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.22.0"
}
}