-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "blog",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "nodemon --exec babel-node ./src/bin/www.js",
"clean": "rm -rf dist",
"build": "npm run clean && babel ./src --out-dir dist --copy-files",
"prod": "node ./dist/bin/www.js"
},
"config": {
"accessToken": "NLpRbDgXzE1T7zrUmOv3dqj7xDci78KZtvFOW2Od36g",
"space": "oho5ksjq7wc2"
},
"dependencies": {
"@contentful/rich-text-html-renderer": "^14.1.2",
"body-parser": "^1.19.0",
"contentful": "^8.1.7",
"cookie-parser": "^1.4.5",
"core-js": "^3.8.2",
"debug": "~2.6.9",
"ejs": "~2.6.1",
"express": "^4.16.4",
"express-ejs-layouts": "^2.5.0",
"http-errors": "~1.6.3",
"marked": "^1.2.7",
"morgan": "~1.9.1",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.7"
}
}