-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.15 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": "typescript-project-bootstrap",
"version": "1.0.0",
"description": "Projet Typescript pré-configuré (Jest, Nodemon...)",
"main": "src/main.ts",
"scripts": {
"start": "node dist/src/main.js",
"dev": "tsc && node dist/src/main.js",
"watch": "tsc && nodemon dist/src/main.js",
"watch-on-windows": "tsc && nodemon --legacy-watch dist/src/main.js",
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sherpa1/typescript-project-bootstrap.git"
},
"author": "Alexandre Leroux (alex@sherpa.one)",
"license": "ISC",
"bugs": {
"url": "https://github.com/sherpa1/typescript-project-bootstrap/issues"
},
"homepage": "https://github.com/sherpa1/typescript-project-bootstrap#readme",
"dependencies": {
"@types/jest": "^29.1.1",
"chalk": "^4.1.2",
"keypress": "^0.2.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.8.4"
},
"devDependencies": {
"jest": "^29.1.2",
"nodemon": "^2.0.20"
}
}