-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 862 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
{
"scripts": {
"test": "vendor/bin/phpunit test",
"dev": "npm-run-all --parallel php-server watch:webpack chat-server",
"php-server": "php -S localhost:8000 -t public",
"chat-server": "php bin/chat_server.php",
"watch:webpack": "cross-env NODE_ENV=\"development\" npx webpack --watch",
"build": "cross-env NODE_ENV=\"production\" npx webpack build"
},
"devDependencies": {
"cross-env": "^7.0.3",
"css-loader": "^6.9.1",
"daisyui": "^4.6.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.33",
"postcss-loader": "^8.0.0",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"style-loader": "^3.3.4",
"tailwindcss": "^3.4.1",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"flatpickr": "^4.6.13",
"flowbite": "^2.2.1"
}
}