-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 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
{
"name": "@sahincapiec/git4nstats",
"version": "1.0.1",
"description": "",
"main": "dist/app.js",
"scripts": {
"build": "npx tsc -b",
"build-pnpm": "pnpx tsc -b",
"build-watching": "npx tsc -b -w",
"build-watching-pnpm": "pnpx tsc -b -w",
"db-setup": "env-cmd --no-override -f ./config/dev.env node dist/interfaces/database/mongodb/setup.js",
"db-startup": "env-cmd --no-override -f ./config/dev.env node dist/interfaces/database/mongodb/startup.js",
"start": "env-cmd --no-override -f ./config/dev.env node dist/src/app.js",
"start-watching": "env-cmd --no-override -f ./config/dev.env nodemon dist/src/app.js -e js",
"start-watching-pnpm": "pnpx env-cmd --no-override -f ./config/dev.env nodemon dist/src/app.js -e js",
"test": "npx jest",
"test-pnpm": "pnpx jest",
"test-watching": "npx jest --watch",
"test-watching-pnpm": "pnpx jest --watch dist/test/*.*"
},
"author": "Samir Hincapié",
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:sahincapiec/git4nstatus.git",
"directory": "@sahincapiec/git4nstatus"
},
"bugs": {
"url": "https://github.com/sahincapiec/git4nstatus/issues"
},
"homepage": "https://github.com/sahincapiec/git4nstatus",
"devDependencies": {
"@types/jest": "26.0.19",
"@types/mongodb": "3.6.3",
"@types/node": "14.14.14",
"env-cmd": "10.1.0",
"jest": "26.6.3",
"nodemon": "2.0.6",
"typescript": "4.1.3"
},
"dependencies": {
"fastify": "3.9.2",
"mongodb": "3.6.3",
"octonode": "0.10.0"
}
}