-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 1020 Bytes
/
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
{
"name": "bsidesrdu-website",
"version": "2.0.0",
"description": "The website for BSides RDU",
"main": "index.js",
"scripts": {
"start": "npm-run-all --parallel server:dev watch:tailwind",
"server:dev": "live-server docs --no-css-inject --ignore=./docs/css",
"watch:tailwind": "tailwindcss -i ./src/input.css -o ./docs/css/style.css --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/BSidesRDU/website.git"
},
"keywords": [
"BSides",
"RDU",
"Security"
],
"author": "Phillip Harrington <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/BSidesRDU/website/issues"
},
"homepage": "https://github.com/BSidesRDU/website#readme",
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.1"
}
}