-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 817 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 817 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
{
"name": "typescript-starter-template",
"version": "1.0.0",
"main": "dist/library.js",
"module": "lib/index.js",
"author": "Daiz <taneli.vatanen@gmail.com>",
"license": "CC0-1.0",
"config": {
"library": "Library",
"host": "localhost",
"port": "8080"
},
"scripts": {
"start": "webpack-serve webpack.config.js",
"build": "tsc --build"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^10.12.21",
"awesome-typescript-loader": "^5.2.1",
"prettier": "^1.16.4",
"source-map-loader": "^0.2.4",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.1",
"typescript-tslint-plugin": "^0.3.1",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-serve": "^2.0.3",
"worker-loader": "^2.0.0"
}
}