generated from alxford45/ts-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.49 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
{
"name": "ts-webpack",
"version": "1.0.0",
"description": "flexible starting typescript env using webpack and babel",
"scripts": {
"start": "npm run server & npm run web",
"server": "webpack -w --config config/webpack.config.ts --config-name server",
"web": "webpack-dev-server --config config/webpack.config.ts --config-name web"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alxford45/ts-webpack.git"
},
"keywords": [
"babel, webpack, typescript, express, boilerplate, template"
],
"author": "Alexander Ford",
"license": "MIT",
"bugs": {
"url": "https://github.com/alxford45/ts-webpack/issues"
},
"homepage": "https://github.com/alxford45/ts-webpack#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/express": "^4.17.0",
"@types/html-webpack-plugin": "^3.2.0",
"@types/node": "^12.6.2",
"@types/webpack": "^4.4.34",
"@types/webpack-dev-server": "^3.1.7",
"@types/webpack-node-externals": "^1.6.3",
"babel-loader": "^8.0.6",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.19.1",
"nodemon-webpack-plugin": "^4.0.8",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"axios": "^0.19.0",
"core-js": "^3.2.1",
"express": "^4.17.1",
"fast-async": "^7.0.6"
}
}