-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 838 Bytes
/
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
{
"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 serve",
"build": "webpack --config webpack.config.prod.js"
},
"keywords": [
"typescript",
"course"
],
"author": "Roman Markhevka",
"license": "ISC",
"devDependencies": {
"@types/lodash": "^4.14.167",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"clean-webpack-plugin": "^3.0.0",
"lite-server": "^2.5.4",
"reflect-metadata": "^0.1.13",
"ts-loader": "^8.0.13",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1"
},
"dependencies": {
"lodash": "^4.17.20"
}
}