-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 754 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 754 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
{
"name": "my-typescript-starter",
"version": "1.0.0",
"main": "index.js",
"author": "tharindusathis",
"license": "MIT",
"private": true,
"dependencies": {
"express": "^4.17.1",
"swagger-ui-express": "^4.1.6"
},
"scripts": {
"start": "node build/index.js",
"build": "tsc -p tsconfig.json",
"dev": "ts-node-dev src/index.ts",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.8",
"@babel/preset-typescript": "^7.13.0",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.16",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
}
}