forked from codebrewlab/nx-plugins
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.9 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
{
"name": "@efacity/nx-plugins",
"description": "A collection of third-party Nx plugins based on https://github.com/codebrewlab/nx-plugins by Devin Kwon",
"author": {
"name": "Ruslan Kharitonov"
},
"license": "MIT",
"homepage": "https://github.com/therk/nx-plugins",
"repository": {
"type": "git",
"url": "git+https://github.com/therk/nx-plugins.git"
},
"scripts": {
"nx": "nx",
"lint-stage": "lint-staged",
"commitlint": "commitlint",
"is-ci": "is-ci",
"test": "nx test nx-aws-cdk",
"lint": "nx lint nx-aws-cdk",
"e2e": "nx e2e",
"format": "nx format:write",
"build:aws-cdk": "nx build nx-aws-cdk",
"link:aws-cdk": "cd dist/packages/nx-aws-cdk && npm link",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"tslib": "^2.0.0"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1302.4",
"@angular-devkit/schematics": "^13.2.4",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@jscutlery/semver": "^2.10.0",
"@nrwl/cli": "12.5.8",
"@nrwl/devkit": "12.5.8",
"@nrwl/eslint-plugin-nx": "12.5.8",
"@nrwl/jest": "12.5.8",
"@nrwl/linter": "12.5.8",
"@nrwl/node": "12.5.8",
"@nrwl/nx-plugin": "^12.5.8",
"@nrwl/tao": "12.5.8",
"@nrwl/workspace": "12.5.8",
"@types/jest": "26.0.8",
"@types/node": "14.14.33",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "4.19.0",
"dotenv": "8.2.0",
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"husky": "^7.0.0",
"is-ci": "^3.0.0",
"jest": "27.0.3",
"lint-staged": "^11.2.3",
"nx": "^13.8.2",
"prettier": "^2.3.1",
"ts-jest": "27.0.3",
"ts-node": "~9.1.1",
"tslib": "^2.0.0",
"typescript": "~4.2.4"
},
"lint-staged": {
"*.{js,json,css,scss,md,ts,html,graphql}": [
"npm run format --uncommitted"
]
}
}