-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.7 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
{
"name": "@alterior/root-package",
"version": "0.0.0",
"private": true,
"description": "An Express-based Typescript MVC framework with decorators and dependency injection.",
"author": "The Alterior Project (https://github.com/alterior-mvc)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alterior-mvc/alterior.git"
},
"bugs": {
"url": "https://github.com/alterior-mvc/alterior/issues"
},
"workspaces": [
"packages/*"
],
"scripts": {
"test": "lerna run test",
"publish:all": "lerna link && npm test && lerna publish",
"clean:npm:lock": "rimraf packages/*/package-lock.json",
"clean:npm:modules": "rimraf packages/*/node_modules",
"clean:npm": "npm run clean:npm:lock && npm run clean:npm:modules",
"clean:lerna": "rimraf **/*.tgz",
"clean:dist": "rimraf packages/*/dist pacakges/*/dist.esm",
"clean": "npm run clean:dist && lerna run clean",
"build": "lerna run build",
"docs": "lerna run --parallel docs"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/express": "^4.17.15",
"@types/mkdirp": "^0.5.2",
"@types/node": "^18.11.18",
"@types/rimraf": "^4.0.5",
"@types/serve-static": "1.15.0",
"@types/supertest": "^2.0.9",
"chai": "^4.1.2",
"dotenv": "^16.3.1",
"express": "^4.17.1",
"kind-of": ">=6.0.3",
"lerna": "^8.0.0",
"lodash": ">=4.17.19",
"mkdirp": "^0.5.5",
"razmin": "^1.2.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^4.0.7",
"source-map-support": "^0.4.6",
"supertest": "^3.1.0",
"swagger-editor-dist": "^3.9.0",
"tslib": "^2.3.1",
"typedoc": "^0.23.24",
"typescript": "^4.9.4",
"zone.js": "^0.14.3"
}
}