forked from flowaccount/nx-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.04 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.04 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "flowaccount",
"version": "0.0.0",
"license": "MIT",
"workspaces": [
"libs/nx-serverless",
"libs/nx-aws-cdk"
],
"repository": {
"type": "git",
"url": "ssh://git@github.com/flowaccount/nx-plugins.git"
},
"scripts": {
"commit": "git-cz",
"checkcommit": "node ./scripts/commit-lint.js",
"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",
"workspace-generator": "nx workspace-generator"
},
"private": true,
"dependencies": {
"@nguniversal/express-engine": "12.0.0",
"express": "^4.17.1"
},
"devDependencies": {
"@angular-devkit/build-webpack": "0.1200.0",
"@babel/code-frame": "^7.8.3",
"@nrwl/cli": "12.3.3",
"@nrwl/devkit": "^12.3.3",
"@nrwl/eslint-plugin-nx": "12.3.3",
"@nrwl/express": "12.3.3",
"@nrwl/jest": "12.3.3",
"@nrwl/linter": "12.3.3",
"@nrwl/node": "12.3.3",
"@nrwl/nx-plugin": "12.3.3",
"@nrwl/tao": "12.3.3",
"@nrwl/workspace": "12.3.3",
"@scullyio/scully": "^1.1.1",
"@types/express": "^4.17.2",
"@types/fs-extra": "^8.1.0",
"@types/jest": "26.0.8",
"@types/node": "14.14.33",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
"circular-dependency-plugin": "^5.0.2",
"copy-webpack-plugin": "5.1.1",
"cypress": "^4.1.0",
"cz-conventional-changelog": "^3.0.2",
"cz-customizable": "^6.2.0",
"depcheck": "0.9.2",
"dotenv": "8.2.0",
"dotenv-json": "^1.0.0",
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"husky": "^3.0.3",
"ignore": "^5.0.4",
"is-builtin-module": "^3.0.0",
"jest": "26.2.2",
"license-webpack-plugin": "2.1.2",
"prettier": "2.2.1",
"serverless": "^2.29.0",
"strip-json-comments": "^3.1.0",
"tree-kill": "^1.2.2",
"ts-jest": "26.5.5",
"ts-node": "9.1.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "4.2.4",
"upath": "^1.2.0",
"webpack": "4.42.0",
"webpack-merge": "4.2.1",
"webpack-node-externals": "1.7.2",
"webpack-dev-server": "3.11.0",
"@types/webpack-bundle-analyzer": "4.4.0",
"@types/webpack": "^4.4.24",
"@types/webpack-dev-server": "^3.11.1",
"rxjs-for-await": "0.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"husky": {
"hooks": {
"pre-push": "yarn checkcommit && yarn format:check"
}
}
}