forked from flowaccount/nx-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.89 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "flowaccount",
"version": "0.0.0",
"license": "MIT",
"workspaces": [
"libs/nx-serverless",
"libs/nx-aws-cdk"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/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",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help"
},
"private": true,
"dependencies": {
"@nguniversal/express-engine": "^9.0.1",
"express": "^4.17.1"
},
"peerDependencies": {
"@nrwl/workspace": "^9.2.2",
"@nrwl/node": "^9.2.2",
"@nrwl/express": "^9.2.2"
},
"devDependencies": {
"@angular-devkit/build-webpack": "~0.901.0",
"@nrwl/nx-plugin": "9.2.2",
"@nrwl/workspace": "9.2.2",
"@types/node": "~8.9.4",
"@types/express": "^4.17.2",
"@types/fs-extra": "^8.1.0",
"dotenv": "6.2.0",
"dotenv-json": "^1.0.0",
"eslint": "6.8.0",
"prettier": "1.19.1",
"ts-node": "~7.0.0",
"typescript": "3.8.3",
"@nrwl/eslint-plugin-nx": "9.2.2",
"@typescript-eslint/parser": "2.19.2",
"@typescript-eslint/eslint-plugin": "2.19.2",
"eslint-config-prettier": "^6.10.1",
"@nrwl/jest": "9.2.2",
"jest": "^25.3.0",
"@types/jest": "^25.2.1",
"ts-jest": "^25.4.0",
"serverless": "^1.59.3",
"serverless-webpack": "5.3.1",
"copy-webpack-plugin": "5.1.1",
"license-webpack-plugin": "2.1.2",
"circular-dependency-plugin": "^5.0.2",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"webpack": "4.41.2",
"webpack-merge": "4.2.1",
"webpack-dev-server": "3.9.0",
"webpack-node-externals": "1.7.2",
"depcheck": "0.9.2",
"cz-conventional-changelog": "^3.0.2",
"cz-customizable": "^6.2.0",
"husky": "^3.0.3",
"is-builtin-module": "^3.0.0",
"strip-json-comments": "^3.1.0",
"@babel/code-frame": "^7.8.3",
"tree-kill": "^1.2.2",
"cypress": "^4.1.0",
"rxjs": "6.5.4",
"@scullyio/scully": "^0.0.93",
"upath": "^1.2.0",
"ignore": "^5.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"husky": {
"hooks": {
"pre-push": "yarn checkcommit && yarn format:check"
}
}
}