forked from anatine/esbuildnx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.27 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.27 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
{
"name": "anatine",
"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",
"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": {
"@nrwl/cli": "12.3.5",
"@nrwl/devkit": "12.3.5",
"@nrwl/eslint-plugin-nx": "12.3.5",
"@nrwl/jest": "12.3.5",
"@nrwl/linter": "12.3.5",
"@nrwl/nest": "12.3.5",
"@nrwl/node": "12.3.5",
"@nrwl/nx-plugin": "12.3.5",
"@nrwl/tao": "12.3.5",
"@nrwl/workspace": "12.3.5",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.22",
"@types/node": "14.14.41",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"date-fns": "^2.21.3",
"dotenv": "8.2.0",
"esbuild": "~0.12.5",
"eslint": "7.24.0",
"eslint-config-prettier": "8.2.0",
"fs-extra": "^9.1.0",
"jest": "26.6.3",
"node-watch": "^0.7.1",
"prettier": "2.2.1",
"strip-comments": "^2.0.1",
"ts-jest": "26.5.5",
"ts-node": "~9.1.1",
"tslib": "^2.2.0",
"typescript": "~4.2.4"
},
"dependencies": {
"@google-cloud/logging-winston": "^4.0.4",
"recursive-copy": "^2.0.11"
}
}