-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 750 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 750 Bytes
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
{
"name": "typescript-starter-kit",
"version": "1.0.0",
"description": "A tiny starter kit for node project with typecript",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "tsc && node dist/index.js",
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/cbyad/typescript-starter-kit.git"
},
"keywords": [
"starter kit",
"test with jest",
"typescript"
],
"author": "yannick (cbyad)",
"license": "ISC",
"dependencies": {
"dotenv": "v8.2.0",
"fp-ts": "^2.8.4",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"jest": "^26.6.0",
"ts-jest": "^26.4.1"
}
}