-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
{
"name": "webpack-starter",
"version": "0.0.1",
"description": "It's the webpack starter for .ts, .js based projects which handling mobile first.",
"repository": "[email protected]:mateuszJS/webpack-starter.git",
"author": "Mateusz Walendzik <[email protected]>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=11.3.0",
"yarn": "^1.12.3"
},
"scripts": {
"dev": "webpack-dev-server --hot --inline --config webpack.dev.ts",
"build": "webpack --config webpack.prod.ts",
"lint": "tslint --fix --project ./tsconfig.json"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@types/node": "^12.0.10",
"@types/webpack": "^4.4.33",
"@types/webpack-dev-server": "^3.1.6",
"babel-loader": "^8.0.6",
"html-webpack-plugin": "^3.2.0",
"ts-loader": "^6.0.3",
"ts-node": "^8.3.0",
"tslint": "^5.17.0",
"tslint-config-standard": "^8.0.1",
"tslint-loader": "^3.5.4",
"typescript": "^3.5.2",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.1",
"webpack-merge": "^4.2.1"
}
}