-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 972 Bytes
/
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
{
"name": "static-garden",
"version": "1.0.2",
"main": "src/cli.ts",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"url": "https://github.com/matteoturini/static-garden"
},
"scripts": {
"watch:compilation": "tsc -w",
"watch:run": "cd tests && nodemon ../dist/cli.js",
"prepublish": "tsc"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.1",
"@types/dompurify": "^2.2.2",
"@types/fs-extra": "^9.0.11",
"@types/html-minifier-terser": "^5.1.1",
"@types/jsdom": "^16.2.11",
"@types/marked": "^2.0.3",
"@types/node": "^15.12.4",
"@types/sass": "^1.16.0",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0"
},
"dependencies": {
"consola": "^2.15.3",
"dompurify": "^2.2.9",
"fs-extra": "^10.0.0",
"html-minifier-terser": "^5.1.1",
"jsdom": "^16.6.0",
"marked": "^2.1.1",
"sass": "^1.35.1",
"typescript": "^4.3.4"
},
"bin": {
"static-garden": "dist/cli.js"
}
}