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.3",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.2.0",
"node-sass": "^6.0.1",
"prettier": "^2.3.2",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.55.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}