-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.4 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
{
"name": "camelot",
"version": "1.0.0",
"description": "A super simple, easy to deploy HTML to PDF microservice (powered by Puppeteer)",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"build": "rimraf dist/ && babel ./src --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"dev": "nodemon --ignore dist/ --ignore tmp/ --exec babel-node -- ./src/index.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthaywardwebdesign/camelot.git"
},
"author": "Matt Hayward",
"license": "MIT",
"bugs": {
"url": "https://github.com/matthaywardwebdesign/camelot/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.46.1",
"nodemon": "^1.17.2",
"rimraf": "^2.6.2"
},
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"puppeteer": "^1.3.0",
"uuid": "^3.2.1",
"winston": "^3.0.0-rc1"
},
"homepage": "https://github.com/matthaywardwebdesign/camelot#readme"
}