-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.49 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.49 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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "roosevelt-website",
"description": "🧸🕸 Website for Roosevelt MVC web framework.",
"author": "Roosevelt Framework Team <rooseveltframework@gmail.com>",
"contributors": [
{
"name": "Contributors",
"url": "https://github.com/rooseveltframework/roosevelt-website/graphs/contributors"
}
],
"version": "0.31.1",
"homepage": "https://rooseveltframework.org",
"license": "CC-BY-4.0",
"main": "build.js",
"readmeFilename": "README.md",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@colors/colors": "1.6.0",
"axios": "1.15.0",
"check-if-css-is-disabled": "2.0.2",
"cheerio": "1.2.0",
"docs-check-if-css-is-disabled": "https://github.com/rooseveltframework/check-if-CSS-is-disabled",
"docs-crossplatform-killport": "https://github.com/rooseveltframework/crossplatform-killport",
"docs-express-browser-reload": "https://github.com/rooseveltframework/express-browser-reload",
"docs-express-html-validator": "https://github.com/rooseveltframework/express-html-validator",
"docs-fallback-dependencies": "https://github.com/rooseveltframework/fallback-dependencies",
"docs-minify-html-attributes": "https://github.com/rooseveltframework/minify-html-attributes",
"docs-multi-db-driver": "https://github.com/rooseveltframework/multi-db-driver",
"docs-node-php-runner": "https://github.com/rooseveltframework/node-php-runner",
"docs-progressively-enhance-web-components": "https://github.com/rooseveltframework/progressively-enhance-web-components",
"docs-roosevelt": "https://github.com/rooseveltframework/roosevelt",
"docs-roosevelt-logger": "https://github.com/rooseveltframework/roosevelt-logger",
"docs-semantic-forms": "https://github.com/rooseveltframework/semantic-forms",
"docs-source-configs": "https://github.com/rooseveltframework/source-configs",
"docs-single-page-express": "https://github.com/rooseveltframework/single-page-express",
"docs-teddy": "https://github.com/rooseveltframework/teddy",
"highlight.js": "11.11.1",
"invokers-polyfill": "1.0.3",
"roosevelt": "0.31.8",
"sass": "1.99.0",
"semantic-forms": "5.3.5",
"showdown": "2.1.0",
"teddy": "1.1.4",
"tippy.js": "6.3.7",
"webpack": "5.106.1"
},
"devDependencies": {
"http-server": "14.1.1",
"standard": "17.1.2",
"stylelint": "17.7.0",
"stylelint-config-standard-scss": "17.0.0",
"watcher": "2.3.1"
},
"standard": {
"ignore": [
"docs/"
]
},
"repository": {
"type": "git",
"url": "git://github.com/rooseveltframework/roosevelt-website.git"
},
"scripts": {
"contributors": "node contributors.js",
"d": "node build.js --development-mode && http-server docs/",
"dev": "node build.js --development-mode && http-server docs/",
"development": "node build.js --development-mode && http-server docs/",
"p": "node build.js --production-mode && http-server docs/",
"prod": "node build.js --production-mode && http-server docs/",
"production": "node build.js --production-mode && http-server docs/",
"build": "node build.js --production-mode",
"build-dev": "node build.js --development-mode",
"lint": "npm run standard && npm run stylelint",
"standard": "./node_modules/.bin/standard",
"stylelint": "./node_modules/.bin/stylelint \"statics/css/**/*.scss\"",
"start": "node build.js --production-mode && http-server docs/",
"test": "npm run lint"
},
"funding": "https://www.paypal.com/donate/?hosted_button_id=2L2X8GRXZCGJ6"
}