-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
53 lines (53 loc) · 1.71 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
45
46
47
48
49
50
51
52
53
{
"name": "hackgreenville_com",
"license": "SEE LICENSE IN LICENSE.MD",
"description": "website for hackgreenville",
"private": false,
"scripts": {
"dev": "vite",
"build": "vite build",
"hg:install": "yarn install",
"hg:deploy-prep": "yarn hg:install; yarn production",
"hg:start": "pm2 start ecosystem.config.js",
"hg:delete": "pm2 delete ecosystem.config.js",
"hg:stop": "pm2 delete ecosystem.config.js",
"hg:monit": "pm2 monit",
"hg:dev": "yarn hg:delete; yarn hg:start; yarn hg:monit",
"test": "echo 'Running art test'",
"posttest": "php artisan test --parallel",
"lint": "prettier --write \"resources/{js,scss}/**/*.{ts,tsx,md,json,js,scss}\" --loglevel=error",
"lint:php": "composer lint --silent"
},
"pre-commit": [
"lint",
"lint:php"
],
"devDependencies": {
"bootstrap": "^4.0.0",
"cross-env": "^7.0",
"jquery": "^3.2",
"laravel-vite-plugin": "^0.7.8",
"lodash": "^4.17.15",
"pm2": "^5.3.0",
"popper.js": "^1.12",
"pre-commit": "^1.2.2",
"sass": "^1.20.1",
"sass-loader": "^8.0.0",
"sharrre": "^2.0.1",
"vite": "^4.5.3",
"vite-plugin-image-optimizer": "^1.1.6"
},
"dependencies": {
"@fullcalendar/core": "^4.4.0",
"@fullcalendar/daygrid": "^4.4.0",
"@fullcalendar/list": "^4.4.2",
"bootstrap-datepicker": "^1.9.0",
"bootstrap-switch": "^3.4.0",
"dotenv": "^16.3.1",
"moment": "^2.24.0",
"prettier": "^2.8.8",
"sharp": "0.32.0",
"sweetalert2": "^11.7.12",
"yarn": "^1.22.19"
}
}