-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
83 lines (83 loc) · 2.58 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "bmac",
"private": true,
"version": "4.1.4",
"repository": {
"type": "git",
"url": "https://github.com/daveroverts/bmac.git"
},
"author": {
"name": "Dave Roverts",
"email": "[email protected]",
"url": "https://www.daveroverts.nl"
},
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run build",
"production": "npm run build",
"build": "mix --production",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@eclass/semantic-release-sentry-releases": "^3.1.0",
"@fortawesome/fontawesome-free": "^6.2.1",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"axios": "^1.1.3",
"bootstrap": "^4.6.2",
"cross-env": "^7.0.3",
"jquery": "^3.6.1",
"laravel-mix": "^6.0.49",
"laravel-mix-purgecss": "^6.0.0",
"popper.js": "^1.16.1",
"postcss": "^8.4.31",
"resolve-url-loader": "^5.0.0",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"semantic-release": "^24.0.0",
"tinymce": "^7.4.1"
},
"dependencies": {
"alpinejs": "^3.10.5",
"bootswatch": "^4.6.2",
"flatpickr": "^4.6.13",
"sweetalert2": "11.4.8"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/cz-commitlint"
}
}
}