-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.78 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "club-gamma",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"prepare": "husky install",
"lint:check": "nx run-many --all --fix --target=lint",
"lint:fix": "nx run-many --all --fix --target=lint",
"format:check": "nx format:check --all",
"format:fix": "nx format:write --all"
},
"private": true,
"dependencies": {
"express": "^4.18.1",
"tslib": "^2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@nrwl/cli": "14.7.5",
"@nrwl/eslint-plugin-nx": "14.7.5",
"@nrwl/express": "14.7.5",
"@nrwl/jest": "14.7.5",
"@nrwl/linter": "14.7.5",
"@nrwl/node": "14.7.5",
"@nrwl/nx-cloud": "latest",
"@nrwl/workspace": "14.7.5",
"@types/express": "4.17.13",
"@types/jest": "28.1.1",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"husky": "^8.0.1",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"lint-staged": "^13.0.3",
"nx": "14.7.5",
"prettier": "^2.7.1",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typescript": "~4.8.2"
},
"description": "> **Note** > > - To add new feat create your branch",
"main": "jest.preset.js",
"repository": {
"type": "git",
"url": "git+https://github.com/KashishLakhara04/uneasy.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/KashishLakhara04/uneasy/issues"
},
"homepage": "https://github.com/KashishLakhara04/uneasy#readme",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}