-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.15 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
{
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.0",
"@hotwired/stimulus": "^3.0.0",
"@hotwired/turbo": "^7.1.1 || ^8.0",
"@symfony/stimulus-bridge": "^3.2.0",
"@symfony/ux-turbo": "file:vendor/symfony/ux-turbo/assets",
"@symfony/webpack-encore": "^5.0.0",
"core-js": "^3.38.0",
"regenerator-runtime": "^0.13.9",
"webpack": "^5.74.0",
"webpack-cli": "^5.1.0",
"webpack-notifier": "^1.15.0"
},
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"build": "encore production --progress",
"db:reset": "psql -U php_pfcadmin -d php_pfc -f ./src/database/1_create_tables.sql; psql -U php_pfcadmin -d php_pfc -f ./src/database/2_seeding_tables.sql",
"db:drop": "psql -U php_pfcadmin -d php_pfc -f ./src/database/3_drop.sql"
},
"dependencies": {
"@tailwindcss/postcss": "^4.0.6",
"postcss": "^8.5.2",
"postcss-loader": "^8.1.1",
"tailwindcss": "^4.0.6"
}
}