-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.29 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.29 KB
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
{
"private": true,
"scripts": {
"local": "cross-env NODE_ENV=development ENV_FILE=./.env.development node_modules/webpack/bin/webpack.js --progress --env=local --config=node_modules/laravel-mix/setup/webpack.config.js",
"staging": "cross-env NODE_ENV=staging node_modules/webpack/bin/webpack.js --progress --env=staging --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "cross-env NODE_ENV=production ENV_FILE=./.env.production node_modules/webpack/bin/webpack.js --progress --env=production --config=node_modules/laravel-mix/setup/webpack.config.js",
"dev": "npm run local",
"prod": "npm run production",
"watch": "npm run local -- --watch"
},
"devDependencies": {
"cross-env": "^7.0.3",
"laravel-mix": "^6.0.49",
"laravel-mix-replace-in-file": "^0.1.0",
"replace-in-file": "^7.1.0",
"sass": "^1.69.7",
"sass-loader": "^13.3.3",
"string-replace-loader": "^3.1.0",
"vue": "^3.4.11",
"vue-loader": "^16.8.3"
},
"dependencies": {
"dotenv": "^16.4.5",
"firebase": "^10.8.0",
"mix-env-file": "^0.1.1",
"moment": "^2.30.1",
"primeflex": "^3.3.1",
"primeicons": "^7.0.0",
"primevue": "^3.52.0"
}
}