generated from AhsanAyaz/typescript-tailwind-webpack-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "typescript-tailwind-webpack-starter",
"version": "1.0.0",
"description": "A modern Webpack 5, Tailwind CSS 3, and TypeScript Web Apps Starter Template",
"private": true,
"scripts": {
"start": "webpack serve --mode=development --open",
"build": "webpack --config webpack-prod.config.js",
"test": "jest",
"lint": "eslint ./src/**/*.ts",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "Muhammad Ahsan Ayaz<ahsan.ubitian@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"copy-webpack-plugin": "^10.1.0",
"css-loader": "^6.5.1",
"eslint": "^8.48.0",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.4",
"postcss": "^8.4.4",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.0.1",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
}
}