-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.2 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
{
"name": "ares-x",
"version": "0.1.0",
"description": "",
"main": "./dist/bin/index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"start": "tsc && node dist/bin",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"local": "npm i -g && hello"
},
"files": [
"config",
"dist",
"templates"
],
"bin": {
"ares": "./dist/bin/index.js"
},
"author": "Andrea Di Blasi",
"license": "MIT",
"dependencies": {
"@babel/preset-typescript": "^7.18.6",
"@types/config": "^3.3.0",
"@types/handlebars-helpers": "^0.5.3",
"@types/jest": "^29.1.2",
"@types/ramda": "^0.28.16",
"@types/yargs": "^17.0.13",
"ajv": "^8.11.0",
"chalk": "^4.1.2",
"config": "^3.3.8",
"figlet": "^1.5.2",
"handlebars": "^4.7.7",
"inquirer": "^8.2.4",
"knex": "^2.3.0",
"mongodb": "4.10",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"objection": "^3.0.1",
"pino": "^8.5.0",
"ramda": "^0.28.0",
"shelljs": "^0.8.5",
"sqlite3": "^5.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"yargs": "^17.6.2"
},
"devDependencies": {
"jest": "^29.2.0",
"ts-jest": "^29.0.3"
}
}