-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.58 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.58 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
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
{
"name": "devconf",
"version": "2.0",
"description": "This is the website for www.DevConf.co.za",
"homepage": "https://www.devconf.co.za",
"license": "CC-BY-SA-4.0",
"repository": {
"type": "git",
"url": "https://github.com/devconfza/Website_DevConf"
},
"contributors": [
{
"name": "Robert MacLean",
"email": "robert@sadev.co.za"
},
{
"name": "Candice Mesk",
"email": "candice@developerug.org.za"
},
{
"name": "Mark Pearl",
"email": "markpearl@gmail.com"
},
{
"name": "Terence Kruger",
"email": "terencejkruger@gmail.com"
}
],
"devDependencies": {
"@eslint/eslintrc": "^3",
"@eslint/js": "^10",
"@types/grecaptcha": "^3",
"@types/node": "^25",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"concurrently": "^9",
"eslint": "^10",
"eslint-plugin-import": "^2",
"globals": "^17",
"husky": "^9",
"nodemon": "^3",
"sass": "^1",
"ts-loader": "^9",
"typescript": "^6",
"uuid": "^14",
"webpack": "^5",
"webpack-cli": "^7"
},
"scripts": {
"watch-css": "yarn sass --update --no-source-map -w --style compressed -I scss scss/main.scss public/css/main.css",
"watch-code": "yarn run webpack --progress --color --watch",
"start": "concurrently -k --kill-others-on-fail \"jekyll s\" \"yarn run watch-css\" \"yarn run watch-code\"",
"prepare": "husky"
},
"resolutions": {
"cross-spawn": "^7.0.6",
"micromatch": "^4.0.8"
},
"dependencies": {
"vanilla-cookieconsent": "^3.1.0"
}
}