forked from ZachJW34/nx-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.4 KB
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
{
"name": "nx-plus",
"version": "0.0.1",
"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",
"create-playground": "ts-node tools/scripts/create-playground.ts",
"update-playground": "ts-node tools/scripts/update-playground.ts",
"workspace-generator": "nx workspace-generator",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0"
},
"devDependencies": {
"@angular-devkit/schematics": "^13.3.0",
"@docusaurus/core": "^2.0.0-beta.14",
"@nrwl/cypress": "14.3.6",
"@nrwl/devkit": "14.3.6",
"@nrwl/eslint-plugin-nx": "14.3.6",
"@nrwl/jest": "14.3.6",
"@nrwl/js": "14.3.6",
"@nrwl/linter": "14.3.6",
"@nrwl/node": "14.3.6",
"@nrwl/nx-plugin": "14.3.6",
"@nrwl/react": "14.3.6",
"@nrwl/workspace": "14.3.6",
"@swc-node/register": "^1.4.2",
"@swc/core": "^1.2.173",
"@types/fs-extra": "^9.0.13",
"@types/jest": "27.4.1",
"@types/node": "18.0.0",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "5.24.0",
"@typescript-eslint/experimental-utils": "5.24.0",
"@typescript-eslint/parser": "5.24.0",
"@vue/cli-service": "~4.5.15",
"@vue/cli-shared-utils": "~4.5.15",
"dotenv": "10.0.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.3.0",
"fs-extra": "^10.0.0",
"husky": "^8.0.0",
"jest": "27.5.1",
"nuxt": "^2.15.8",
"nx": "14.3.6",
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"react-test-renderer": "18.2.0",
"rxjs": "6.5.5",
"semver": "^7.3.5",
"strip-ansi": "^6.0.1",
"ts-jest": "27.1.4",
"ts-node": "10.8.1",
"tslib": "^2.3.0",
"tslint": "6.1.3",
"typescript": "4.7.4",
"vite": "^2.8.6"
}
}