-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.45 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.45 KB
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
{
"name": "markdown-content-tools",
"version": "1.0.0",
"description": "Content generation and automation tools with md",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "./node_modules/.bin/nodemon --ignore 'client/' --exec ./node_modules/.bin/babel-node ./server",
"build": "./node_modules/.bin/babel -d ./dist ./server",
"prebuild": "rm -rf dist/* client/build/*",
"start": "node ./dist/index.js",
"prestart": "npm run build && cd client && npm run build && cd .. && mkdir dist/client dist/client/build && cp -rf client/build dist/client",
"get-medium-user": "node server/tools/get-medium-user"
},
"keywords": [
"markdown",
"node",
"automation",
"content"
],
"author": "Nafeu Nasir <nafeu.nasir@gmail.com> (http://nafeu.com/)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.11.6",
"@babel/core": "7.11.6",
"@babel/node": "7.10.5",
"@babel/preset-env": "7.11.5",
"nodemon": "2.0.4"
},
"dependencies": {
"@octokit/core": "3.2.4",
"axios": "0.21.1",
"cloudinary": "1.23.0",
"cors": "2.8.5",
"dotenv": "8.2.0",
"execa": "4.0.3",
"express": "4.17.1",
"express-fileupload": "1.2.0",
"lodash": "4.17.20",
"markdown-it": "11.0.1",
"markdown-it-highlightjs": "3.3.0",
"mime-types": "2.1.27",
"regenerator-runtime": "0.13.7",
"socket.io": "2.3.0",
"yaml-front-matter": "4.1.0"
}
}