-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 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
{
"name": "matex",
"version": "1.0.0",
"description": "markdown to pdf server",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && cross-env NODE_ENV=production webpack",
"serve": "cross-env NODE_ENV=production node src/index.js",
"start": "nodemon"
},
"repository": {
"type": "git",
"url": "[email protected]/msyfls123/MaTeX.git"
},
"keywords": [
"markdown",
"pdf",
"javascript"
],
"author": "msyfls123",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"babel-loader": "^8.0.5",
"babel-plugin-transform-react-jsx": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"easymde": "^2.6.0",
"express": "^4.16.4",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.11",
"markdown-it": "^8.4.2",
"nodemon": "^1.18.10",
"pdfkit": "^0.9.0",
"pdfmake": "^0.1.56",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-fast-compare": "^2.0.4",
"react-hot-loader": "^4.8.0",
"react-simplemde-editor": "^4.0.0",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.3",
"typescript": "^5.1.6",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-dev-middleware": "^3.6.1",
"webpack-hot-middleware": "^2.24.3",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/lodash": "^4.14.123",
"@types/markdown-it": "0.0.7",
"@types/pdfkit": "^0.12.10",
"@types/pdfmake": "^0.2.2",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.3",
"@types/webpack": "^4.4.26",
"webpack-cli": "^3.3.0"
}
}