-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.62 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
61
{
"name": "@oslabs-beta/expressbridge",
"version": "0.0.29",
"description": "expressbridge is a event-driven microservice framework for Node.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "tsc & node .",
"dev": "tsc -w & nodemon .",
"test": "EB_TELEMETRY=true jest",
"format": "prettier -c src/*",
"prepare": "husky install",
"lint": "eslint src/**/*.ts",
"prepare:ci": "./ci.sh",
"format:fix": "prettier -c src/* --write",
"lint:fix": "eslint src/**/*.ts --fix"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.17",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"husky": "^7.0.0",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/expressbridge.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/oslabs-beta/expressbridge/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"homepage": "https://github.com/oslabs-beta/expressbridge#readme",
"lint-staged": {
"src/**/*.ts": [
"npm run format",
"npm run lint"
]
},
"dependencies": {
"axios": "^0.24.0",
"uuid": "^8.3.2"
}
}