-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "game-of-lifef",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"analize": "npm run lint:fix && npm run compile",
"compile": "tsc --noEmit",
"compile:watch": "npm run compile -- --watch",
"compile:build": "tsc -b",
"lint": "eslint . --ext .ts,.tsx",
"lint:watch": "esw --color --watch",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --config .prettierrc '**/*.+(ts|tsx)'",
"format:fix": "npm run format -- --write",
"test": "jest --verbose",
"test:watch": "npm run test -- --watchAll",
"test:coverage": "npm run test -- --coverage",
"check-updates": "ncu -u"
},
"author": "prueba",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-watch": "^8.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"npm-check-updates": "^16.9.0",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"typescript": "^5.0.3",
"@types/node": "^18.15.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.+(ts|tsx)": [
"npm run lint:fix",
"npm run compile",
"git add . "
]
}
}