-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.05 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
38
39
40
{
"name": "tsc-template",
"version": "1.0.0",
"description": "A simple typescript template.",
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc",
"preserve": "npm run build",
"serve": "cross-env NODE_ENV=development concurrently \"tsc --watch\" \"nodemon -q dist/index.js\"",
"prestart": "npm run build",
"start": "cross-env NODE_ENV=production node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Charith47/tsc-template.git"
},
"keywords": [
"typescript",
"node",
"nodemon"
],
"author": "Charith47",
"license": "ISC",
"bugs": {
"url": "https://github.com/Charith47/tsc-template/issues"
},
"homepage": "https://github.com/Charith47/tsc-template#readme",
"dependencies": {
"@types/node": "^17.0.23",
"cross-env": "^7.0.3",
"dot-env": "^0.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.3"
},
"devDependencies": {
"concurrently": "^7.0.0",
"nodemon": "^2.0.15"
}
}