-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "blogli",
"version": "0.1.3",
"description": "Static site generator",
"main": "build/index.js",
"files": ["build/*", "tsconfig.json"],
"scripts": {
"build": "tsc",
"watch": "npm run build -- -w",
"start": "npm run build",
"tsnode": "ts-node ./src/index.ts --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"blogli": "build/index.js",
"blogli-serve": "scripts/serve.js",
"blogli-watch": "scripts/watch.js"
},
"author": "Jim Schofield",
"license": "MIT",
"devDependencies": {
"@types/prismjs": "^1.16.1",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.0",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/markdown-it": "^10.0.2",
"@types/shelljs": "^0.8.8",
"chokidar": "^3.4.2",
"http-server": "^0.12.3",
"markdown-it": "^11.0.0",
"prismjs": "^1.21.0",
"shelljs": "^0.8.4"
},
"repository": {
"type": "git",
"url": "https://github.com/JimSchofield/blogli.git"
}
}