-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.3 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
41
42
43
44
{
"name": "my-webpack-project",
"version": "1.0.0",
"description": "My webpack project",
"main": "index.js",
"scripts": {
"dev": "npx tailwindcss -i ./src/style.css -o ./dist/css/style.css --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"keywords": [
"sera"
],
"author": "Mohammed Seyam",
"license": "ISC",
"devDependencies": {
"@tailwindcss/typography": "^0.5.14",
"@webpack-cli/generators": "^3.0.7",
"autoprefixer": "^10.4.20",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.0",
"postcss": "^8.4.41",
"postcss-loader": "^8.1.1",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.9",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@alpine-collective/toolkit": "^1.0.2",
"@alpinejs/collapse": "^3.14.1",
"@alpinejs/intersect": "^3.14.1",
"@typeform/embed": "^5.0.0",
"alpinejs": "^3.14.1",
"copy-webpack-plugin": "^12.0.2",
"embla-carousel": "^8.1.8",
"embla-carousel-auto-scroll": "^8.1.8"
}
}