-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.4 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.4 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
{
"name": "webpack-typscript-template",
"version": "0.0.1",
"description": "template project including webpack and typescript",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --port 9000 --inline --progress --profile --colors --watch --content-base src/ --mode development",
"build": "webpack --config webpack.config.js --mode production",
"build.prod": "webpack --config webpack.config.js -p",
"build.esnext": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"//": "(// => build:js)babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"build.all": "npm run build.prod && npm run build.esnext",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helloworld121/webpack-typscript-template.git"
},
"keywords": [
"webpack",
"typescript"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/helloworld121/webpack-typscript-template/issues"
},
"homepage": "https://github.com/helloworld121/webpack-typscript-template#readme",
"devDependencies": {
"source-map-loader": "^1.0.2",
"ts-loader": "^8.0.2",
"tslint": "^6.1.3",
"tslint-loader": "^3.5.4",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}