-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.94 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.94 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "personal-website",
"description": "This is the personal website of Jayne Doe (otherwise known as J4Numbers)",
"author": "Jayne Doe <j4numbers@gmail.com>",
"version": "2.0.5-SNAPSHOT",
"main": "src/app.js",
"private": true,
"license": "MIT",
"scripts": {
"clean": "./node_modules/.bin/gulp clean",
"build": "npm run clean && npm run build:gulp",
"build:gulp": "./node_modules/.bin/gulp build",
"cover": "npm run cover:unit",
"cover:unit": "./node_modules/.bin/nyc --nycrc-path nyc.js.config.js check-coverage",
"generate-certs": "openssl req -x509 -newkey rsa:2048 -days 365 -nodes -sha256 -subj '/CN=localhost' -keyout certs/localhost-privkey.pem -out certs/localhost-cert.pem",
"quality:eslint": "./node_modules/.bin/eslint -c .eslintrc.js . --ext .js,.ts",
"start": "node ./src/app",
"test": "npm run quality:eslint && npm run test:unit",
"test:unit": "./node_modules/.bin/nyc --nycrc-path nyc.js.config.js mocha --config test/.mocharc.js --check-leaks"
},
"repository": {
"type": "git",
"url": "git://git@github.com:j4numbers/personal-website.git"
},
"bugs": {
"url": "https://github.com/j4numbers/personal-website/issues"
},
"dependencies": {
"axios": "^0.24.0",
"bootstrap": "^5.1.3",
"bootstrap-icons": "^1.7.2",
"bunyan": "^1.8.15",
"config": "^3.3.6",
"debug": "^4.3.3",
"jquery": "^3.6.0",
"jsonwebtoken": "^8.5.1",
"luxon": "^2.3.0",
"markdown-it": "^12.3.0",
"mongoose": "^6.1.4",
"multer": "^1.4.4",
"nunjucks": "^3.2.3",
"popper.js": "^1.16.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"restify": "^8.6.0",
"restify-errors": "latest",
"serve-favicon": "^2.5.0",
"sharp": "^0.29.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@j4numbers/eslint-base-config": "^1.2.6",
"@j4numbers/eslint-typescript-config": "^1.0.6",
"@types/bunyan": "^1.8.8",
"@types/config": "^0.0.40",
"@types/jsonwebtoken": "^8.5.6",
"@typescript-eslint/parser": "^5.8.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"clear-module": "^4.1.2",
"eslint": "^8.5.0",
"eslint-plugin-mocha": "^10.0.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-sass": "^5.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
"import-fresh": "^3.3.0",
"mocha": "^9.1.3",
"mock-require": "^3.0.3",
"mongodb-memory-server": "^8.1.0",
"node-sass-tilde-importer": "^1.0.2",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sass": "^1.45.2",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"files": [
"certs",
"config",
"public",
"src",
"gulpfile.js",
"lock.html",
"package.json",
"package-lock.json",
"README.md",
"robots.txt",
"sitemap.txt"
]
}