forked from tilli-pro/node-developer-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.41 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
57
58
59
60
{
"name": "tilli-ticker",
"version": "1.0.0",
"description": "Tilli Nodejs challenge.",
"main": "dist/index.js",
"bin": {
"tt": "dist/index.js"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 2,
"printWidth": 80,
"overrides": [
{
"files": [
"src/**/*.ts"
],
"options": {
"parser": "typescript"
}
}
]
},
"scripts": {
"start": "nodemon --no-stdin src/index.ts",
"build": "tsc",
"prettier": "prettier --write \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/backendsuraj/node-developer-challenge.git"
},
"bugs": {
"url": "https://github.com/backendsuraj/node-developer-challenge/issues"
},
"homepage": "https://github.com/backendsuraj/node-developer-challenge#readme",
"author": "backendsuraj@gmail.com",
"license": "ISC",
"dependencies": {
"axios": "^1.3.4",
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"figlet": "^1.5.2",
"nanospinner": "^1.1.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/figlet": "^1.5.5",
"@types/prompts": "^2.4.4",
"nodemon": "^2.0.22",
"prettier": "2.8.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}