-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "mexpost",
"version": "0.0.1",
"description": "API de códigos postales",
"license": "MIT",
"main": "dist/index.js",
"authors": {
"name": "Arturo Ortega",
"email": "[email protected]"
},
"repository": "https://github.com/macarthuror/MexPost/MexPost",
"scripts": {
"build": "tsc",
"start": "node dist/index",
"dev": "nodemon",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:api": "apidoc -i src/ -o apidoc/",
"test": "jest",
"test:w": "jest --watchAll",
"test:w:c": "jest --watchAll --verbose false"
},
"dependencies": {
"consola": "^2.15.3",
"dotenv": "^10.0.0",
"fastify": "^3.20.2",
"mariadb": "^2.5.4"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.7.2",
"jest": "^26.6.3",
"nodemon": "^2.0.12",
"ts-jest": "^26.5.6",
"ts-node": "^10.0.0",
"typescript": "^4.3.2",
"vuepress": "^1.8.2"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "ts-node src/index.ts"
}
}