-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
83 lines (83 loc) · 2.42 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
{
"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": "^14.2.6",
"@docusaurus/core": "^2.1.0",
"@nrwl/cypress": "15.2.4",
"@nrwl/devkit": "15.2.4",
"@nrwl/eslint-plugin-nx": "15.2.4",
"@nrwl/jest": "15.2.4",
"@nrwl/js": "15.2.4",
"@nrwl/linter": "15.2.4",
"@nrwl/node": "15.2.4",
"@nrwl/nx-cloud": "15.0.2",
"@nrwl/nx-plugin": "15.2.4",
"@nrwl/react": "15.2.4",
"@nrwl/workspace": "15.2.4",
"@swc-node/register": "^1.4.2",
"@swc/core": "^1.2.173",
"@types/fs-extra": "^9.0.13",
"@types/jest": "28.1.8",
"@types/node": "18.7.18",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"@typescript-eslint/utils": "^5.36.1",
"@vue/cli-service": "^5.0.8",
"@vue/cli-shared-utils": "^5.0.8",
"dotenv": "10.0.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.3.0",
"fs-extra": "^10.0.0",
"husky": "^8.0.0",
"jest": "28.1.3",
"jest-environment-jsdom": "^29.3.1",
"nuxt": "^2.15.8",
"nx": "15.2.4",
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"rxjs": "6.5.5",
"semver": "^7.3.5",
"strip-ansi": "^6.0.1",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"tslint": "6.1.3",
"typescript": "4.8.4",
"vite": "^2.8.6"
}
}