-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
{
"name": "@anyapi/anyapi",
"version": "1.0.2",
"license": "MIT",
"description": "anyapi is a generic, store anything api implemented in node.js using restify and mongodb",
"homepage": "https://github.com/RoryCombe/anyapi",
"repository": {
"type": "git",
"url": "https://github.com/RoryCombe/anyapi.git"
},
"private": false,
"bin": {
"anyapi": "dist/index.js"
},
"scripts": {
"test": "jest",
"tw": "npm t -- --watch",
"tsc": "tsc",
"compile": "npm run tsc",
"prestart": "npm run compile",
"start": "node dist/index.js",
"semantic-release": "semantic-release"
},
"dependencies": {
"chalk": "^4.1.0",
"clear": "^0.1.0",
"date-fns": "^2.17.0",
"dotenv": "^8.2.0",
"figlet": "^1.5.0",
"lowdb": "^1.0.0",
"minimist": "^1.2.5",
"mongodb": "^3.1.13",
"restify": "^8.5.1",
"restify-errors": "^8.0.2",
"tslib": "^2.1.0"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"@types/clear": "^0.1.1",
"@types/figlet": "^1.2.1",
"@types/jest": "^26.0.20",
"@types/lowdb": "^1.0.9",
"@types/mongodb": "^3.0.5",
"@types/restify": "^5.0.7",
"@types/restify-errors": "^4.3.2",
"@types/supertest": "^2.0.10",
"jest": "^26.6.3",
"mongodb-memory-server": "^6.6.7",
"semantic-release": "^19.0.3",
"supertest": "^6.1.3",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
}
}