-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.04 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
{
"name": "ts-package",
"version": "1.0.0",
"description": "Easily create Typescript node.js packages from this boilerplate",
"main": "lib/",
"types": "lib/",
"author": "Josh Merlino",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/JoshMerlino/ts-package.git"
},
"scripts": {
"watch-ts": "tsc -w",
"watch-js": "nodemon .",
"dev": "concurrently \"npm:watch-*\"",
"start": "rm -rf lib build; git clone https://github.com/JoshMerlino/vanillatweeks.git -b build build; npm run build && node .",
"build": "tsc"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"concurrently": "^7.0.0",
"eslint": "^7.32.0",
"nodemon": "^2.0.15",
"typescript": "^4.6.3",
"typescript-eslint": "0.0.1-alpha.0"
},
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^16.0.0"
}
}