-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 929 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
{
"name": "jest-playground",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:kn3ny/jest-playground.git",
"author": "kn3ny",
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.10",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"jest": "^26.5.3",
"npm-run-all": "^4.1.5",
"prettier": "2.1.2",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"scripts": {
"dev": "ts-node ./src/index.ts",
"test": "jest --coverage",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx",
"eslint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"fix": "run-s eslint:fix prettier:fix"
}
}