forked from anatine/esbuildnx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.31 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": "anatine",
"version": "0.2.17",
"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",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"build:esbuildnx": "nx build esbuildnx",
"build:esbuildnx:watch": "nx build esbuildnx --watch",
"ci:test:esbuildnx": "nx test esbuildnx",
"ci:build:esbuildnx": "nx build esbuildnx",
"ci:e2e:esbuildnx": "nx e2e esbuildnx-e2e",
"ci:publish:esbuildnx": "npm publish dist/packages/esbuildnx",
"ci:test:decorators": "nx test esbuild-decorators",
"ci:build:decorators": "nx build esbuild-decorators",
"ci:publish:decorators": "npm publish dist/packages/esbuild-decorators"
},
"devDependencies": {
"@angular-devkit/schematics": "^12.2.6",
"@nrwl/cli": "12.9.0",
"@nrwl/devkit": "12.9.0",
"@nrwl/eslint-plugin-nx": "12.9.0",
"@nrwl/jest": "12.9.0",
"@nrwl/linter": "12.9.0",
"@nrwl/nest": "12.9.0",
"@nrwl/node": "12.9.0",
"@nrwl/nx-plugin": "12.9.0",
"@nrwl/tao": "12.9.0",
"@nrwl/workspace": "12.9.0",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^27.4.1",
"@types/node": "17.0.23",
"@typescript-eslint/eslint-plugin": "4.29.0",
"@typescript-eslint/parser": "4.29.0",
"date-fns": "^2.28.0",
"dotenv": "16.0.0",
"esbuild": "~0.14.29",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"fs-extra": "^10.0.1",
"jest": "27.5.1",
"node-watch": "^0.7.3",
"prettier": "2.6.1",
"strip-comments": "^2.0.1",
"ts-jest": "27.1.4",
"ts-node": "~10.7.0",
"tslib": "^2.3.1",
"typescript": "4.6.3"
},
"dependencies": {
"@google-cloud/logging-winston": "^4.2.2",
"recursive-copy": "^2.0.14"
}
}