-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 914 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 914 Bytes
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
{
"name": "webpack4-ts-environment",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"hot-dev": "nodemon",
"dev": "ts-node ./src/main.ts",
"build-dev": "webpack --config webpack.config.dev.js",
"start-dev": "yarn build-dev && node ./dist/main.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@types/node": "^12.11.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"nodemon": "^1.19.4",
"source-map-loader": "^0.2.4",
"ts-node": "^8.4.1",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"express": "^4.17.1"
}
}