-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 995 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": "my_typescript_todo-list",
"version": "1.0.0",
"description": "My TypeScript ToDo-List",
"keywords": [],
"author": "Webvelopers, Inc.",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack serve --mode development",
"watch": "webpack serve --mode development --watch"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"autoprefixer": "^10.4.14",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^7.0.0",
"flowbite": "^2.5.2",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.5",
"postcss-loader": "^7.3.0",
"postcss-preset-env": "^10.1.3",
"tailwindcss": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.3"
}
}