-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 774 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 774 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
{
"name": "understanding-typescript",
"version": "1.0.0",
"description": "Understanding TypeScript Course Setup",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server",
"build-dev": "webpack",
"build": "webpack --config webpack.config.prod.js"
},
"keywords": [
"typescript",
"course"
],
"author": "Maximilian Schwarzmüller",
"license": "ISC",
"devDependencies": {
"@types/lodash": "^4.17.12",
"clean-webpack-plugin": "^4.0.0",
"lite-server": "^2.5.4",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"lodash": "^4.17.21"
}
}