forked from nxtend-team/nxtend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.54 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "nxtend",
"version": "0.0.0",
"description": "A collection of third-party Nx plugins",
"author": {
"name": "Devin Shoemaker",
"email": "devinshoe@gmail.com"
},
"homepage": "https://github.com/nxtend-team/nxtend",
"repository": {
"type": "git",
"url": "git+https://github.com/nxtend-team/nxtend.git"
},
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"workspace-generator": "nx workspace-generator"
},
"private": true,
"dependencies": {
"@docusaurus/core": "2.0.0-beta.9",
"@docusaurus/preset-classic": "2.0.0-beta.9",
"@mdx-js/react": "^1.6.21",
"classnames": "^2.2.6",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@nrwl/angular": "13.7.2",
"@nrwl/cli": "13.7.2",
"@nrwl/cypress": "13.7.2",
"@nrwl/devkit": "13.7.2",
"@nrwl/eslint-plugin-nx": "13.7.2",
"@nrwl/jest": "13.7.2",
"@nrwl/linter": "13.7.2",
"@nrwl/nx-cloud": "13.1.2",
"@nrwl/nx-plugin": "13.7.2",
"@nrwl/react": "13.7.2",
"@nrwl/tao": "13.7.2",
"@nrwl/web": "13.7.2",
"@nrwl/workspace": "13.7.2",
"@nx-plus/docusaurus": "12.2.0",
"@types/jest": "27.0.2",
"@types/node": "14.14.33",
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"cross-env": "^7.0.3",
"cypress": "^8.3.0",
"dotenv": "10.0.0",
"eslint": "8.7.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"husky": "^4.2.3",
"ignore": "^5.1.8",
"jest": "27.2.3",
"prettier": "2.5.1",
"pretty-quick": "^2.0.1",
"ts-jest": "27.0.5",
"ts-node": "9.1.1",
"tslib": "^2.0.0",
"tslint": "6.1.3",
"typescript": "4.5.5"
},
"resolutions": {
"terser": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern '{packages,e2e}/**/*.{js,jsx,ts,tsx,json,css,scss,md,html}'"
}
}
}