-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.03 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
{
"name": "starfleet",
"version": "0.0.0",
"license": "MIT",
"private": true,
"workspaces": [
"./dist/**"
],
"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",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"local-registry": "./scripts/local-registry.sh"
},
"dependencies": {
"@parcel/source-map": "^2.0.0",
"@swc/core": "^1.2.95",
"@vitejs/plugin-react-refresh": "^1.3.6",
"acorn": "^8.5.0",
"acorn-jsx": "^5.3.2",
"chokidar": "^3.5.2",
"esbuild": "^0.13.4",
"estree-walker": "^2.0.2",
"magic-string": "^0.25.7",
"periscopic": "^3.0.4",
"tsconfig-paths": "^3.10.1",
"tslib": "^2.3.1",
"vite": "^2.6.5"
},
"devDependencies": {
"@nrwl/cli": "12.10.0",
"@nrwl/devkit": "12.10.0",
"@nrwl/eslint-plugin-nx": "12.10.0",
"@nrwl/jest": "12.10.0",
"@nrwl/linter": "12.10.0",
"@nrwl/node": "12.10.0",
"@nrwl/nx-plugin": "12.10.0",
"@nrwl/tao": "12.10.0",
"@nrwl/workspace": "12.10.0",
"@types/estree": "^0.0.50",
"@types/jest": "27.0.2",
"@types/node": "14.14.33",
"@typescript-eslint/eslint-plugin": "4.31.2",
"@typescript-eslint/parser": "4.31.2",
"dotenv": "10.0.0",
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"jest": "27.2.3",
"prettier": "2.3.2",
"ts-jest": "27.0.5",
"ts-node": "~9.1.1",
"typescript": "4.3.5",
"verdaccio": "^5.1.6"
}
}