-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.72 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
{
"name": "piilani",
"version": "1.0.0-dev.26",
"description": "Just another Web application framework.",
"directories": {
"bin": "./bin"
},
"scripts": {
"build": "run-s lint compile:clean compile:cli cli:exec cli:templates",
"build:cli": "run-s clean:cli compile:cli",
"clean": "rm -rf bin/ context/ controllers/ decorators/ errors/ factories/ gateways/ mapping/ services/",
"cli:exec": "mv bin/cli.js bin/cli && chmod +x bin/cli",
"cli:templates": "cp -r src/bin/templates bin/",
"compile": "tsc -p ./tsconfig.js",
"compile:clean": "npm run clean && tsc",
"compile:cli": "cd src/bin && tsc -p ./tsconfig.json",
"dist": "npm run build && npm publish && npm run clean",
"lint": "eslint --ext .ts src/**",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"app-root-path": "^3.0.0",
"case": "^1.6.3",
"commander": "^8.3.0",
"jsonwebtoken": "^9.0.0",
"mongodb": "^4.3.1",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.6.0",
"winston": "^3.4.0",
"winston-transport": "^4.4.2"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/jsonwebtoken": "^8.5.9",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.11",
"@types/pg": "^8.6.4",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"mocha": "^9.2.0",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"ts-mocha": "^9.0.2",
"typescript": "^4.5.5"
},
"keywords": [
"framework",
"web",
"http",
"rest",
"server",
"typescript",
"backend"
],
"author": "Jason Favrod <mail@jasonfavrod.com>",
"repository": {
"url": "https://github.com/jfavrod/piilani",
"type": "git"
},
"license": "MIT"
}