This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2 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
65
66
67
68
69
70
71
{
"name": "pdf",
"version": "0.0.0",
"description": "Generate PDF files of articles",
"main": "index.js",
"engines": {
"node": "14"
},
"scripts": {
"start": "node lib/index.js",
"build": "babel src --out-dir lib",
"heroku-postbuild": "npm run build",
"prepare": "husky install",
"dev": "rimraf lib && npm run build && (babel -w src --out-dir lib & nodemon -w lib -w .env lib/index.js)",
"cloc": "find . -name '*.js' -not -path \"./node_modules*\" -not -path \"./lib*\" | xargs wc -l",
"test": "node test/renderToFile.js"
},
"lint-staged": {
"*.js": [
"standard --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbiting/pdf.git"
},
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/orbiting/pdf/issues"
},
"homepage": "https://github.com/orbiting/pdf#readme",
"dependencies": {
"@react-pdf/renderer": "2.3.0",
"apollo-fetch": "^0.7.0",
"d3-time-format": "^2.1.1",
"express": "^4.16.2",
"graphql-tag": "^2.6.0",
"hyphen": "^1.6.2",
"mdast-react-render": "^1.2.0",
"react": "^17.0.2",
"react-apollo": "^2.0.4",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.2",
"regiment": "https://github.com/orbiting/regiment"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.13.14",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"d3-queue": "^3.0.7",
"dotenv": "^9.0.1",
"eslint": "^7.13.0",
"eslint-config-standard": "^16.0.1",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"node-fetch": "^2.1.2",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"rw": "^1.3.3",
"standard": "^16.0.2"
}
}