-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "minify",
"version": "1.0.0",
"description": "a link shortening website",
"main": "src/index.ts",
"scripts": {
"test": "env-cmd -f ./config/test.env jest --watch --detectOpenHandles --runInBand",
"dev": "env-cmd -f ./config/dev.env nodemon -e ts,hbs,css,js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Codeprinz-1/minify.git"
},
"keywords": [
"link",
"shortener"
],
"author": "Prince",
"license": "ISC",
"bugs": {
"url": "https://github.com/Codeprinz-1/minify/issues"
},
"homepage": "https://github.com/Codeprinz-1/minify#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/hbs": "^4.0.1",
"@types/jest": "^27.4.1",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.7",
"@types/node-cron": "^3.0.1",
"@types/nodemon": "^1.19.1",
"@types/supertest": "^2.0.11",
"env-cmd": "^10.1.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"supertest": "^6.2.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"express": "^4.17.3",
"hbs": "^4.2.0",
"mongoose": "^6.2.10",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.0"
}
}