-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.42 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
{
"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": "[email protected]"
},
{
"name": "Candice Mesk",
"email": "[email protected]"
},
{
"name": "Mark Pearl",
"email": "[email protected]"
},
{
"name": "Terence Kruger",
"email": "[email protected]"
}
],
"devDependencies": {
"@types/grecaptcha": "^3.0.9",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"concurrently": "^9.1.0",
"eslint": "^9.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.31.0",
"nodemon": "^3.1.7",
"sass": "^1.82.0",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"uuid": "^11.0.3"
},
"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\""
}
}