-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "insta-mongo",
"version": "0.0.8",
"description": "Instantly start a MongoDB dev server and load database fixtures",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"start": "node ./build/cli.js",
"s": "npm start",
"start:dev": "nodemon",
"sd": "npm run start:dev",
"c": "npm run clean",
"clean": "rm -rf build/*",
"b": "npm run build",
"build": "tsc --incremental",
"bw": "npm run build:watch",
"build:watch": "tsc --incremental --watch",
"prepublishOnly": "npm run clean && tsc"
},
"bin": {
"insta-mongo": "./bin/cli"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/ashleydavis/insta-mongo.git"
},
"keywords": [
"javascript",
"file",
"upload",
"node.js",
"nodejs",
"mongodb"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashleydavis/insta-mongo/issues"
},
"homepage": "https://github.com/ashleydavis/insta-mongo#readme",
"dependencies": {
"express": "4.21.0",
"minimist": "^1.2.8",
"mongodb": "^6.10.0",
"mongodb-memory-server": "^10.1.2",
"node-mongodb-fixtures": "^3.2.9"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/minimist": "^1.2.5",
"@types/node": "^22.7.4",
"@types/node-mongodb-fixtures": "^3.2.6",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}