generated from DanWahlin/typescript-fundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
37
38
39
40
{
"name": "typescript-fundamentals",
"version": "1.0.0",
"description": "TypeScript Fundamentals course examples.",
"contributors": [
{
"name": "Dan Wahlin",
"url": "https://www.twitter.com/danwahlin"
},
{
"name": "John Papa",
"url": "https://www.twitter.com/john_papa"
}
],
"scripts": {
"webpack": "webpack --mode development",
"webpack:w": "webpack --mode development --watch",
"start": "webpack serve --mode development --open",
"pretty": "prettier -w ./src/*"
},
"author": "",
"private": true,
"license": "MIT",
"devDependencies": {
"bulma": "^0.9.4",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"sass": "^1.57.1",
"prettier": "^2.8.2",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}