-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 722 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 722 Bytes
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
{
"name": "template-builder",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf ./build && tsc",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && node build/index.js",
"start:dev": "nodemon"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/handlebars": "^4.1.0",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"handlebars": "^4.7.6",
"yaml": "^1.10.0"
}
}