forked from mayajs/maya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.57 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
{
"name": "@mayajs/core",
"version": "0.3.1",
"description": "A Node.js framework for REST API server-side-applications.",
"main": "index.js",
"files": [
"*.d.ts",
"*.js",
"/**/*.d.ts",
"/**/*.js",
"!.git"
],
"scripts": {
"tsc": "tsc -w",
"start": "npm run clean && wait-on -r index.js && npm run tsc",
"clean": "rimraf index.js && rimraf index.d.ts && rimraf lib && rimraf core && rimraf interfaces && rimraf typings && rimraf validator && rimraf *.tgz",
"prepack": "npm run clean && wait-on -r index.js && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mackignacio/maya.git"
},
"keywords": [
"nodejs",
"server",
"nodejs-server",
"express",
"typescript",
"decorators",
"rest",
"api",
"rest-api",
"ioc",
"mongoose"
],
"author": "Mark Anthony C. Ignacio",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mackignacio/maya/issues"
},
"homepage": "https://github.com/Mackignacio/maya#readme",
"dependencies": {
"@types/express": "^4.17.0",
"body-parser": "^1.19.0",
"callsite": "^1.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.6.9",
"mongoose-paginate": "^5.0.3",
"morgan": "^1.9.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/callsite": "^1.0.30",
"@types/cors": "^2.8.5",
"@types/morgan": "^1.7.36",
"ts-lint": "^4.5.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3",
"wait-on": "^3.3.0"
}
}