-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.42 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.42 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
63
64
65
66
67
68
69
70
71
{
"name": "orionrobots.github.io",
"version": "1.0.0",
"description": "Orion Jekyll Site",
"main": "src/index.js",
"scripts": {
"test": "npm run test:bdd",
"test:bdd": "cucumber-js",
"dist": "webpack --mode production -c webpack.config.js",
"dev": "webpack --mode development -c webpack.config.js",
"stats": "webpack -c webpack.config.js --profile --json > stats.json",
"stats-cli": "webpack-bundle-analyzer stats.json",
"11ty": "npx @11ty/eleventy --quiet",
"serve": "npx @11ty/eleventy --serve --quiet --port 8081",
"check-missing-tags": "node src/utilities/list-files-without-tags.js",
"new-post": ".github/scripts/new_post.sh",
"test:smoke:webpack": "ts-node --project tests/smoke/tsconfig.json tests/smoke/webpack.test.ts",
"test:smoke:eleventy": "ts-node --project tests/smoke/tsconfig.json tests/smoke/eleventy.test.ts",
"lint:ts": "ts-standard tests/smoke"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orionrobots/orionrobots.github.io.git"
},
"keywords": [],
"author": "Danny Staple",
"license": "ISC",
"bugs": {
"url": "https://github.com/orionrobots/orionrobots.github.io/issues"
},
"homepage": "https://github.com/orionrobots/orionrobots.github.io#readme",
"devDependencies": {
"@11ty/eleventy": "^3",
"@11ty/eleventy-img": "^6.0.4",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@cucumber/cucumber": "^12.8.1",
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@types/node": "^25.6.0",
"@vidhill/fortawesome-brands-11ty-shortcode": "^1.1.0",
"clean-css": "^5.3.2",
"compression-webpack-plugin": "^12.0.0",
"css-loader": "^7.1.2",
"exports-loader": "^5.0.0",
"expose-loader": "^5.0.0",
"gray-matter": "^4.0.3",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.3.1",
"mini-css-extract-plugin": "^2.10.0",
"moment": "^2.30.1",
"playwright": "^1.59.1",
"postcss-loader": "^8.2.0",
"sass": "^1.99.0",
"sass-loader": "^16.0.2",
"slugify": "^1.6.6",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"terser": "^5.46.0",
"ts-node": "^10.9.2",
"ts-standard": "^12.0.2",
"typescript": "^6.0.2",
"webpack": "^5.106.2",
"webpack-bundle-analyzer": "^5.3.0",
"webpack-cli": "^7.0.0"
},
"dependencies": {
"bootstrap": "^5.3.3",
"jquery": "^4.0.0",
"js-yaml": "^4.1.1"
}
}