-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 950 Bytes
/
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
{
"name": "songwriter",
"version": "0.0.54",
"description": "A proof of concept/reference implementation of building an app around the JSON Song Notation format.",
"main": "songwriter.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/js",
"dev": "LD_LIBRARY_PATH=\"/opt/glibc-2.14/lib/\" nodemon ./index.js"
},
"author": "Daryl Williams",
"license": "AGPLv3",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"glob": "^7.1.6",
"helmet": "^3.21.1",
"html-to-pdf": "^0.1.11",
"html2canvas": "^1.0.0-rc.5",
"jspdf": "^1.5.3",
"morgan": "^1.9.1",
"node-fetch": "^2.6.0",
"nodemailer": "^6.4.10",
"puppeteer": "^3.3.0",
"socket.io": "^2.3.0"
},
"devDependencies": {
"debug": "^4.1.1",
"dotenv": "^8.1.0",
"eslint": "^6.5.0",
"nodemon": "^2.0.4"
}
}