forked from DavidAnson/simple-website-with-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.68 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
{
"name": "simple-website-with-blog",
"version": "0.1.0",
"description": "A simple website that includes a blog",
"private": true,
"main": "app.js",
"author": "David Anson (https://dlaa.me/)",
"license": "MIT",
"homepage": "https://github.com/DavidAnson/simple-website-with-blog",
"repository": {
"type": "git",
"url": "https://github.com/DavidAnson/simple-website-with-blog.git"
},
"bugs": "https://github.com/DavidAnson/simple-website-with-blog/issues",
"scripts": {
"compile": "tsc --incremental",
"future": "cross-env SWWB_SHOW_FUTURE_POSTS=true node app.js",
"lint": "eslint *.js **/*.jsx sites/test/static/tests.js && stylelint sites/**/*.css",
"photo": "cross-env SWWB_SITE_ROOT=./sites/sample-photo node app.js",
"server": "npm run compile && node app.js",
"start": "node app.js",
"test": "cross-env SWWB_SITE_ROOT=./sites/test SWWB_ACME_CHALLENGE=abc.123,abcdefghijklmnopqrstuvwxyz0123456789ABCDEFG.HIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmn node app.js",
"text": "cross-env SWWB_SITE_ROOT=./sites/sample-text node app.js",
"watch": "nodemon --exec npm run server"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"compression": "~1.7.4",
"express": "~4.17.1",
"feature-policy": "~0.5.0",
"helmet": "~4.1.1",
"highlight.js": "~10.3.1",
"lunr": "~2.3.9",
"markdown-it": "~12.0.2",
"react": "~17.0.1",
"react-dom": "~17.0.1",
"rss": "~1.2.2"
},
"devDependencies": {
"cross-env": "~7.0.2",
"eslint": "~7.12.0",
"nodemon": "~2.0.6",
"stylelint": "~13.7.2",
"stylelint-config-standard": "~20.0.0",
"typescript": "~4.0.3",
"@types/vfile-message": "1.0.1"
}
}