-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.69 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
{
"name": "best-server",
"version": "1.0.0",
"license": "MIT",
"author": "santosmarco",
"main": "index.js",
"scripts": {
"build": "yarn lint:fix && yarn format:write && tsc && yarn docs",
"dev": "ts-node-dev --transpile-only --respawn '/Users/marcosantos/Desktop/code/best-server/src/playground.ts'",
"docs": "rm -rf docs && typedoc",
"format:check": "prettier --check src",
"format:write": "prettier --write src",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"test": "jest src",
"test:watch": "jest --watch --verbose src",
"test:watch:failed": "jest --reporters=jest"
},
"dependencies": {
"chalk": "4.1.2",
"deepdash": "^5.3.9",
"eslint-plugin-jsdoc": "^39.3.6",
"joi": "^17.6.0",
"joi-to-swagger": "^6.1.1",
"lodash": "^4.17.21",
"nanoid": "3.3.4",
"redux": "^4.2.0",
"runtype": "^0.2.3",
"runtypes": "^6.6.0",
"ts-mixer": "^6.0.1"
},
"devDependencies": {
"@types/jest": "28.1.1",
"@types/lodash": "^4.14.184",
"@types/node": "^18.7.17",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tsdoc": "^0.2.16",
"eslint-plugin-unicorn": "^43.0.2",
"jest": "28.1.1",
"jest-html-reporter": "^3.6.0",
"jest-silent-reporter": "^0.5.0",
"jsdoc": "^3.6.11",
"openapi-types": "^12.0.2",
"openapi3-ts": "^3.0.2",
"prettier": "^2.7.1",
"ts-expect": "^1.3.0",
"ts-jest": "28.0.5",
"ts-toolbelt": "^9.6.0",
"type-fest": "^2.19.0",
"typedoc": "^0.23.13",
"typescript": "^4.8.3"
}
}