-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 974 Bytes
/
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
{
"name": "nano-bigodon",
"version": "1.0.0",
"description": "Minimal implementation of bigodon on express",
"main": "main.ts",
"scripts": {
"start": "ts-node main.ts",
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabriel-pinheiro/nano-bigodon.git"
},
"keywords": [
"express",
"mustache",
"handlebars",
"bigodon"
],
"author": "Gabriel Pinheiro <gabrielctpinheiro@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gabriel-pinheiro/nano-bigodon/issues"
},
"homepage": "https://github.com/gabriel-pinheiro/nano-bigodon#readme",
"dependencies": {
"bigodon": "^1.7.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}