-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.03 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
{
"name": "@fivethree/snippet-devtool",
"version": "0.2.0",
"description": "billy example app / boilerplate",
"main": "dist/index.js",
"scripts": {
"build": "node_modules/.bin/tsc -p .",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"test": "npm i -g && snippet"
},
"bin": {
"snippet": "dist/generated/index.js"
},
"preferGlobal": false,
"keywords": [
"typescript",
"cli",
"node",
"terminal"
],
"author": "garygrossgarten",
"license": "MIT",
"devDependencies": {
"axios": "^0.18.0",
"@types/node": "^10.12.18",
"nodemon": "^1.18.9",
"ts-node": "^7.0.1",
"typescript": "^3.2.2",
"typescript-ioc": "^1.2.4"
},
"dependencies": {
"@fivethree/billy-core": "0.9.5",
"@fivethree/billy-plugin-core": "0.9.5",
"@fivethree/billy-plugin-markdown": "0.0.8"
}
}