-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.87 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
105
{
"name": "@capsule-cat/propel",
"version": "0.2.0",
"license": "MIT",
"scripts": {
"build": "nx run-many --target=build",
"doc": "npm-run-all doc:*",
"doc:html": "typedoc --entryPointStrategy packages . --exclude **/*.spec.ts --tsconfig tsconfig.base.json --out build/docs",
"doc:json": "typedoc --entryPointStrategy packages . --exclude **/*.spec.ts --tsconfig tsconfig.base.json --json build/docs/typedoc.json",
"lint": "npm-run-all lint:*",
"lint:projects": "nx run-many --target=lint --fix",
"lint:json": "npx prettier --write \"**/*.json\"",
"publish": "npm-run-all publish:* --serial --continue-on-error",
"publish-dry-run": "npm-run-all \"publish:* -- --dry-run\" --serial",
"publish:core": "nx deploy propel-core",
"publish:forward": "nx deploy propel-forward",
"publish:server": "nx deploy propel-server",
"publish:sequelize": "nx deploy propel-sequelize",
"publish:express": "nx deploy propel-express",
"publish:cli": "nx deploy propel-cli",
"test": "nx run-many --target=test",
"prepare": "husky install",
"start": "nx run-many --target=serve",
"start:prod": "echo 'Not implemented yet'",
"version": "nx run-many --target=version --parallel 1"
},
"private": true,
"overrides": {
"@nrwl/devkit": "^15.4.5"
},
"devDependencies": {
"@babel/core": "7.12.13",
"@babel/preset-typescript": "7.12.13",
"@jscutlery/semver": "^2.29.3",
"@mermaid-js/mermaid-cli": "^9.3.0",
"@nrwl/cypress": "15.5.1",
"@nrwl/eslint-plugin-nx": "15.5.1",
"@nrwl/express": "15.5.2",
"@nrwl/jest": "15.5.2",
"@nrwl/js": "15.5.1",
"@nrwl/linter": "15.5.1",
"@nrwl/node": "15.5.2",
"@nrwl/nx-cloud": "15.0.2",
"@nrwl/webpack": "15.5.2",
"@types/express": "4.17.13",
"@types/http-errors": "^2.0.1",
"@types/jest": "28.1.1",
"@types/node": "18.7.1",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"babel-jest": "28.1.1",
"babel-loader": "8.1.0",
"body-parser": "^1.20.1",
"bottlejs": "^2.0.1",
"commander": "^9.5.0",
"cypress": "^12.2.0",
"dotenv-safe": "^8.2.0",
"eslint": "~8.15.0",
"eslint-config-next": "13.0.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-mdx": "^2.0.5",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-sonarjs": "^0.16.0",
"eslint-plugin-testing-library": "^5.9.1",
"eslint-plugin-unicorn": "^42.0.0",
"express": "^4.18.2",
"http-errors": "^2.0.0",
"husky": "^8.0.1",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"lint-staged": "^13.0.3",
"mermaid": "^9.3.0",
"ngx-deploy-npm": "^4.3.10",
"npm-run-all": "^4.1.5",
"nx": "15.5.1",
"prettier": "^2.7.1",
"puppeteer": "^19.5.2",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.28.0",
"sqlite3": "^5.1.4",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typedoc": "^0.23.24",
"typescript": "^4.8.4",
"webpack": "^5.74.0"
},
"workspaces": [
"packages/*"
],
"peerDependencies": {
"body-parser": "^1.20.1",
"bottlejs": "^2.0.1",
"express": "^4.18.2",
"reflect-metadata": "^0.1.13"
}
}