-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 871 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
{
"name": "typescript-base",
"version": "1.0.0",
"description": "Template for typescript node",
"main": "dist/index.js",
"scripts": {
"dev": "env-cmd --silent nodemon ./src/index.ts",
"start": "node --enable-source-maps .",
"prestart": "tsc --build",
"format": "pretty-quick"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unlimitedcoder2/typescript-base.git"
},
"author": "unlimitedcoder2",
"license": "MIT",
"bugs": {
"url": "https://github.com/unlimitedcoder2/typescript-base/issues"
},
"homepage": "https://github.com/unlimitedcoder2/typescript-base#readme",
"devDependencies": {
"@types/node": "^18.15.11",
"env-cmd": "^10.1.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"volta": {
"node": "18.15.0",
"yarn": "1.22.19"
}
}