-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 764 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 764 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
{
"name": "TypeScript",
"version": "1.0.0",
"description": "TypeScript Basic",
"main": "./dist/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "yarn webpack-watch",
"build": "webpack",
"webpack-watch": "webpack --watch --colors",
"server-watch": "nodemon --watch dist/server.js dist/server.js"
},
"repository": "https://github.com/codevjs/TypeScript-Basic.git",
"author": "Renaldi Pranata",
"license": "MIT",
"devDependencies": {
"awesome-typescript-loader": "^5.2.1",
"fork-ts-checker-webpack-plugin": "^4.1.3",
"source-map-loader": "^0.2.4",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-shell-plugin": "^0.5.0"
}
}