-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "presumably",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm-run-all --parallel build:live serve",
"build": "rm -rf out && tsc -p . && node lib/index.js",
"serve": "live-server out --no-browser --wait=1000",
"build:live": "watchexec -w posts -w src -w templates -w resources -n npx ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pesterhazy/presumably.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pesterhazy/presumably/issues"
},
"homepage": "https://github.com/pesterhazy/presumably#readme",
"devDependencies": {
"@types/node": "^14.0.6",
"live-server": "^1.2.1",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.3"
},
"dependencies": {
"@thi.ng/hiccup": "^3.2.23",
"@types/moment": "^2.13.0",
"@types/rimraf": "^3.0.0",
"@types/slug": "^0.9.1",
"array.prototype.flatmap": "^1.2.3",
"fast-glob": "^3.2.2",
"feed": "^4.2.0",
"gray-matter": "^4.0.2",
"moment": "^2.26.0",
"npm-run-all": "^4.1.5",
"slug": "^3.3.0"
}
}