-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 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
{
"name": "mdblog",
"version": "1.0.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "DOTENV_CONFIG_ENCODING=utf-8 NODE_ENV=production node -r dotenv/config ./dist dotenv_config_path=.env",
"dev": "DOTENV_CONFIG_ENCODING=utf-8 NODE_ENV=development node -r dotenv/config ./dist dotenv_config_path=.env.development",
"lint": "eslint ./src",
"build": "tsc -p ."
},
"author": "",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"chokidar": "^3.5.3",
"dotenv": "^16.0.1",
"handlebars": "^4.7.7",
"showdown": "^2.1.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.4",
"@types/showdown": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
}
}