-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "ts-lecture",
"version": "1.0.0",
"description": "basic typescript boilerplate with webpack",
"main": "package.json",
"scripts": {
"build": "webpack",
"start": "node ./build/bundle.js",
"test": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sushantr134/ts-lecture-boilerplate.git"
},
"keywords": [
"ts",
"webpack"
],
"author": "sushant singh",
"license": "ISC",
"bugs": {
"url": "https://github.com/sushantr134/ts-lecture-boilerplate/issues"
},
"homepage": "https://github.com/sushantr134/ts-lecture-boilerplate#readme",
"devDependencies": {
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-loader": "^8.0.5",
"webpack-dev-server": "^3.1.14"
}
}