-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 912 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
36
{
"name": "@olioapps/typescript-starter-lab",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch & nodemon dist",
"dev2": "tsc -w & nodemon -w dist dist/index.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src --ext ts",
"tsc": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"nodemon": "1.11.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"babel-jest": "^27.4.4",
"eslint": "4.0.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.3.0",
"jest": "^27.4.4",
"ts-jest": "^27.1.1",
"tsc": "1.20150623.0",
"typescript": "^4.5.3",
"typescript-eslint-parser": "3.0.0"
}
}