-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 768 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 768 Bytes
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
{
"name": "www.vtcodecamp.org",
"version": "1.0.0",
"description": "VT Code Camp website",
"main": "index.js",
"scripts": {
"build": "npx eleventy",
"serve": "npx eleventy --serve",
"update-data": "node tools/update-data.js",
"update-data:force": "npx cross-env FORCE=true node tools/update-data.js",
"update-and-build": "npm run update-data && npm run build"
},
"dependencies": {
"@11ty/eleventy": "^1.0.1",
"clean-css": "^5.3.1",
"eleventy-plugin-nesting-toc": "^1.3.0",
"got": "^11.8.5",
"markdown-it-anchor": "^8.6.4",
"moment": "^2.29.4",
"node-fetch": "2.6",
"sharp": "^0.30.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vtcodecamp/www.vtcodecamp.org.git"
}
}