-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 KB
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
{
"name": "codetropy",
"version": "1.0.0",
"description": "A package for real time change of lines in a project",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"codetropy": "dist/cli.js"
},
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [],
"author": "Tanay Raj",
"license": "ISC",
"files": [
"dist/**/*"
],
"devDependencies": {
"@types/inquirer": "^8.2.1",
"@types/node": "^16.3.1",
"@types/redis": "^2.8.31",
"prettier": "^2.5.1",
"ts-node": "^10.1.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.2"
},
"dependencies": {
"axios": "^0.26.0",
"chalk": "^4.1.1",
"chokidar": "^3.5.2",
"inquirer": "^8.2.2",
"mongoose": "^6.3.0",
"redis": "^3.1.2"
}
}