-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·48 lines (48 loc) · 1 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
{
"name": "10_auth",
"version": "1.1.3",
"description": "A simple dynamic website template to be used as the base for various projects",
"main": "index.js",
"engines": {
"node": "12.x"
},
"type": "module",
"ava": {
"verbose": true,
"require": [
"esm"
]
},
"scripts": {
"start": "node index.js",
"jsdoc": "node_modules/.bin/jsdoc -c jsdoc.conf",
"linter": "node_modules/.bin/eslint .",
"test": "ava"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"bcrypt-promise": "^2.0.0",
"fs-extra": "^9.0.1",
"handlebars": "^4.7.6",
"koa": "^2.13.0",
"koa-body": "^4.2.0",
"koa-router": "^9.4.0",
"koa-session": "^6.0.0",
"koa-static": "^5.0.0",
"koa-views": "^6.3.0",
"mime-types": "^2.1.27",
"nodemailer": "^6.4.17",
"save-dev": "0.0.1-security",
"sqlite-async": "^1.1.0"
},
"devDependencies": {
"ava": "^3.13.0",
"dependency-check": "^4.1.0",
"eslint": "^7.15.0",
"esm": "^3.2.25",
"jsdoc": "^3.6.6",
"jsdoc-route-plugin": "^0.1.0"
}
}