-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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
{
"name": "sense",
"version": "1.0.0",
"description": "A music sharing website",
"main": "index.js",
"engines": {
"node": "12.x"
},
"scripts": {
"start": "node index.js",
"acceptance": "bash cucumberTest.sh",
"jsdoc": "node_modules/.bin/jsdoc -c jsdoc.conf",
"linter": "node_modules/.bin/eslint --fix .",
"unit": "jest --coverage --detectOpenHandles"
},
"jest": {
"projects": [
"<rootDir>/jest-unit.config.js"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.6",
"bcrypt-promise": "^2.0.0",
"fs-extra": "^7.0.1",
"handlebars": "^4.5.3",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-session": "^5.12.3",
"koa-static": "^5.0.0",
"koa-views": "^6.2.1",
"markdown": "^0.5.0",
"markdownlint-cli": "^0.18.0",
"mime-types": "^2.1.26",
"music-metadata": "^5.0.1",
"mysql": "^2.17.1",
"node-lame": "^1.2.0",
"package.json": "^2.0.1",
"remark-cli": "^7.0.0",
"remark-lint": "^6.0.5",
"remark-preset-lint-markdown-style-guide": "^2.1.3",
"remark-preset-lint-recommended": "^3.0.3",
"sharp": "^0.23.3",
"sqlite-async": "^1.0.12",
"tunnel-agent": "^0.6.0"
},
"devDependencies": {
"acorn": "^7.1.1",
"core-js": "^3.4.5",
"cucumber": "^6.0.5",
"eslint": "^5.16.0",
"http-status-codes": "^1.4.0",
"jest": "^24.9.0",
"jest-puppeteer": "^4.3.0",
"jsdoc": "^3.6.3",
"jsdoc-route-plugin": "^0.1.0",
"markdownlint": "^0.17.2",
"mock-fs": "^4.10.3",
"puppeteer": "^2.0.0"
}
}