-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 903 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
{
"name": "code-template-generator",
"version": "1.0.0",
"description": "",
"main": "./lib/index.js",
"bin": "./lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"release": "npm run test && npm run test",
"build": "tsc -p .",
"local": "sudo npm i -g && pizza",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
},
"author": "",
"license": "ISC",
"dependencies": {
"find": "^0.3.0",
"inquirer": "^7.3.3",
"js-yaml": "^3.14.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"@types/find": "^0.2.1",
"@types/inquirer": "^7.3.1",
"@types/js-yaml": "^3.12.5",
"@types/lodash": "^4.14.164",
"@types/node": "^14.14.6",
"nodemon": "^2.0.6",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}