This repository has been archived by the owner on Oct 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.15 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "ryanleeder.me",
"version": "1.0.0",
"description": "My personal portfolio website powered by node.js",
"author": "Ryan Leeder",
"license": "GNU GPLv3",
"keywords": [
"css",
"sass",
"bootstrap",
"responsive",
"node.js",
"express",
"marko"
],
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/nocodemonkey/ryanleeder.me.git"
},
"homepage": "https://github.com/nocodemonkey/ryanleeder.me",
"bugs": {
"url": "https://github.com/nocodemonkey/ryanleeder.me/issues"
},
"scripts": {
"start": "node server",
"css:lint": "stylelint --config build/.stylelintrc --syntax scss \"scss/**/*.scss\" --cache --cache-location \"build/.stylelintcache/\"",
"css:prefix": "postcss --config build/postcss.config.js --replace \"public/css/*.css\" \"public/css/!*.min.css\"",
"css:compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/main.scss public/css/style.css",
"css:minify": "cleancss --level 1 --source-map --source-map-inline-sources --output public/css/style.min.css public/css/style.css",
"css": "npm run css:lint && npm run css:compile && npm run css:prefix && npm run css:minify",
"css:watch": "watch 'npm run css' scss",
"check-portfolio-config": "node build/portfolio.config.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"body-parser": "1.20.2",
"bootstrap": "5.3.2",
"cheerio": "1.0.0-rc.12",
"compression": "1.7.4",
"djv": "2.1.4",
"express": "4.18.2",
"express-favicon": "2.0.4",
"express-validator": "7.0.1",
"fs": "0.0.2",
"helmet": "7.0.0",
"lodash": "4.17.21",
"marko": "5.31.13",
"method-override": "3.0.0",
"mime": "3.0.0",
"moment": "2.29.4",
"moment-timezone": "0.5.43",
"morgan": "1.10.0",
"nconf": "0.12.1",
"nodemailer": "6.9.7",
"nodemailer-sendgrid": "1.0.3",
"regex-weburl": "2.0.0",
"request": "2.88.2",
"request-ip": "3.3.0",
"request-promise-native": "1.0.9",
"serve-static": "1.15.0",
"simple-recaptcha-new": "1.1.1",
"snyk": "1.1237.0",
"underscore.get": "0.2.9"
},
"noAnalyze": true,
"engines": {
"node": ">=6.x.x <21",
"npm": ">=5.6.0"
},
"devDependencies": {
"autoprefixer": "10.4.16",
"clean-css-cli": "5.6.2",
"fs-extra": "11.1.1",
"jimp": "0.22.10",
"node-sass": "9.0.0",
"postcss-cli": "10.1.0",
"postcss-import": "15.1.0",
"postcss-loader": "7.3.3",
"postcss-preset-env": "9.2.0",
"postcss-syntax": "0.36.2",
"puppeteer": "21.4.1",
"sanitize-filename": "1.6.3",
"semver": "7.5.4",
"stylelint": "15.11.0",
"stylelint-config-recommended-scss": "13.0.0",
"stylelint-config-standard": "34.0.0",
"stylelint-order": "6.0.3",
"stylelint-scss": "5.2.1",
"watch": "1.0.2"
},
"browserslist": [
"last 1 major version",
">= 1%",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
],
"snyk": true
}