-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.34 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.34 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
{
"name": "aequum",
"title": "The aequum framework",
"version": "0.27.15",
"description": "A framrework to build apps common components fast, easy and fair",
"author": {
"name": "Felipe Buccioni",
"email": "felipe.buccioni@gmail.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/fbuccioni/aequum.git"
},
"scripts": {
"build": "tsc -b -v packages",
"postbuild": "npm run move:node_modules",
"build:dev": "tsc -b -v packages --watch",
"prebuild:prod": "npm run clean",
"build:prod": "tsc -b -v packages",
"changelog": "lerna-changelog",
"clean": "tsc -b --clean packages",
"docs:html": "typedoc",
"docs:html:watch": "nodemon --exec 'npm run docs:html' -w 'packages/**/*' -w 'typedoc.json' -i '*.d.ts' -e 'ts,json'",
"lint": "concurrently 'npm run lint:packages'",
"lint:fix": "concurrently 'npm run lint:packages -- --fix' 'npm run lint:integration -- --fix' 'npm run lint:spec -- --fix'",
"lint:packages": "NODE_OPTIONS='--max-old-space-size=4096' npx eslint 'packages/**/**.ts' --ignore-pattern 'packages/**/*.spec.ts'",
"lint:ci": "concurrently 'npm run lint:packages' 'npm run lint:spec'",
"prerelease": "gulp copy-misc",
"publish": "npm run prerelease && npm run build:prod && ./node_modules/.bin/lerna publish --force-publish --access public --exact -m \"chore(@aequum) publish %s release\"",
"prepublishOnly": "npm run changelog | pbcopy",
"publish:beta": "npm run prerelease && npm run build:prod && ./node_modules/.bin/lerna publish --npm-tag=beta --access public -m \"chore(@aequum) publish %s release\"",
"publish:next": "npm run prerelease && npm run build:prod && ./node_modules/.bin/lerna publish --npm-tag=next --access public --skip-git -m \"chore(@aequum) publish %s release\"",
"publish:rc": "npm run prerelease && npm run build:prod && ./node_modules/.bin/lerna publish --npm-tag=rc --access public -m \"chore(@aequum) publish %s release\"",
"publish:test": "npm run prerelease && npm run build:prod && ./node_modules/.bin/lerna publish --force-publish --access public --npm-tag=test --skip-git -m \"chore(@aequum) publish %s release\"",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/gulp": "^4.0.17",
"@types/node": "^22.15.14",
"concurrently": "^9.1.2",
"del": "^8.0.0",
"delete-empty": "^3.0.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^16.0.0",
"gulp": "^5.0.0",
"gulp-typescript": "5.0.1",
"husky": "^9.1.7",
"lerna": "2.11.0",
"lerna-changelog": "2.2.0",
"lint-staged": "^16.0.0",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.28.4",
"typedoc-material-theme": "^1.4.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.33.1"
},
"peerDependencies": {
"class-validator": "*",
"dotenv": "*",
"dotenv-expand": "*",
"mongoose": ">=8.8.0",
"mongoose-paginate-v2": ">=1.8.0",
"typeorm": ">=0.3.0 || <1.0.0",
"typeorm-paginate": "github:fbuccioni/typeorm-paginate#package"
},
"dependencies": {
"tslib": "^2.8.1"
},
"lint-staged": {
"**/*.ts": [
"eslint"
]
}
}