-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.48 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.48 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
{
"name": "canoapi",
"version": "1.0.1",
"description": "Functional library for developing APIs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm run lint",
"preversion": "npm run lint",
"version": "npm run build && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dckntm/plando.git"
},
"keywords": [],
"author": "Ilya Katun",
"license": "ISC",
"bugs": {
"url": "https://github.com/dckntm/plando/issues"
},
"homepage": "https://github.com/dckntm/plando#readme",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongodb": "^3.6.3",
"@types/node": "^14.14.22",
"@types/redis": "^2.8.28",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-etc": "^1.13.9",
"typescript": "^4.1.3"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"fs": "0.0.1-security",
"handy-redis": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.3",
"node": "^15.4.0",
"redis": "^3.0.2",
"tslog": "^3.1.0",
"yup": "^0.32.8"
}
}