forked from ngneat/falso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.08 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "falso",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build:docs": "npm run build && node ./docs-generator.js",
"start:docs": "npm run build:docs && npm run start --prefix docs",
"build": "nx build falso && node ./post-build.js",
"new": "nx workspace-generator falso",
"format": "nx format",
"c": "cz",
"prepare": "husky install",
"test": "nx test falso",
"migrate": "nx migrate latest",
"migrate:run": "nx migrate --run-migrations",
"m": "npx tsc tools/executors/manipulator/index && nx run falso:manipulator"
},
"workspaces": [
"packages/falso",
"docs"
],
"dependencies": {
"tslib": "2.3.1"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-angular": "16.0.0",
"@commitlint/config-conventional": "12.1.4",
"@google-cloud/translate": "6.3.1",
"@jscutlery/semver": "2.13.3",
"@nrwl/cli": "13.4.5",
"@nrwl/devkit": "13.4.5",
"@nrwl/eslint-plugin-nx": "13.4.5",
"@nrwl/jest": "13.4.5",
"@nrwl/js": "13.4.3",
"@nrwl/linter": "13.4.5",
"@nrwl/nx-plugin": "13.4.5",
"@nrwl/tao": "13.4.5",
"@nrwl/web": "13.4.5",
"@nrwl/workspace": "13.4.5",
"@phenomnomnominal/tsquery": "4.1.1",
"@types/estree": "0.0.50",
"@types/jest": "27.0.2",
"@types/node": "14.14.33",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.2.0",
"eslint-config-prettier": "8.1.0",
"git-cz": "4.8.0",
"glob": "7.2.0",
"husky": "6.0.0",
"jest": "27.2.3",
"jsdoc-babel": "0.5.0",
"jsdoc-to-markdown": "7.1.0",
"json-update": "5.3.0",
"lint-staged": "11.1.2",
"prettier": "2.3.1",
"terser": "5.10.0",
"ts-jest": "27.0.5",
"ts-morph": "13.0.2",
"typescript": "4.4.3"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,json,html,tsx,md}": "prettier --write"
}
}