-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.97 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
{
"name": "root",
"version": "0.0.0",
"description": "NodeJS Server & Libs",
"private": true,
"repository": "git://github.com/sergiogc9/nodejs-server.git",
"author": "Sergio Gómez Cosgaya ([email protected])",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "ts-node --files --transpile-only examples/index.ts",
"dev": "IS_DEV=true ts-node-dev --poll --transpile-only examples/index.ts",
"build": "FORCE_COLOR=true lerna run build --stream",
"watch": "FORCE_COLOR=true lerna exec --parallel yarn watch",
"lint": "eslint packages/",
"link:all": "lerna exec --parallel yarn link",
"unlink:all": "lerna exec --parallel --bail=false yarn unlink",
"prepare": "husky install",
"bootstrap": "lerna bootstrap",
"version:change": "lerna version",
"publish": "lerna publish from-package",
"prettier": "prettier --write . --ignore-path .gitignore",
"prettier:check": "prettier --check . --ignore-path .gitignore",
"typescript:check": "lerna exec --parallel \"tsc --noEmit -p .\"",
"bump:auto": "lerna version --conventional-commits",
"bump:version:prerelease": "lerna version prerelease",
"bump:version:patch": "lerna version patch",
"bump:version:minor": "lerna version minor",
"bump:version:major": "lerna version major"
},
"dependencies": {},
"devDependencies": {
"@sergiogc9/eslint-config": "^1.0.10",
"@sergiogc9/js-bundle": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"fox-awesome-cli": "^1.1.2",
"husky": "^8.0.0",
"lerna": "^5.1.4",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"ts-node-dev": "^2.0.0",
"typescript": "4.1.6"
},
"lint-staged": {
"*.{js,ts,tsx,css,json,md}": "prettier --write"
},
"engines": {
"node": ">=16.x.x",
"npm": ">=8.0.0"
}
}