-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "gitwiz",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"scripts": {
"dev": "nodemon",
"build": "tsc",
"start": "node src/app.js",
"buildFront": "webpack --config webpack-front.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shashwatah/gitwiz.git"
},
"author": "shashwatah",
"license": "mit",
"bugs": {
"url": "https://github.com/shashwatah/gitwiz/issues"
},
"homepage": "https://github.com/shashwatah/gitwiz#readme",
"dependencies": {
"body-parser": "^1.20.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.18.2",
"express-handlebars": "^5.3.1",
"helmet": "^3.22.0",
"morgan": "^1.10.0",
"node-cache": "^5.1.0",
"node-fetch": "^3.2.10",
"npm": "^8.19.2"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/express-handlebars": "^3.1.0",
"@types/helmet": "0.0.47",
"@types/morgan": "^1.9.0",
"@types/node": "^14.0.1",
"@types/node-fetch": "^2.5.7",
"jest": "^26.0.1",
"nodemon": "^2.0.20",
"prettier": "2.0.5",
"ts-node": "^8.10.1",
"typescript": "^3.9.2",
"webpack": "^4.43.0",
"webpack-cli": "^4.9.2"
},
"engines": {
"node": "^10.15.3"
}
}