-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "@hostile/express-sdk",
"version": "2.2.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/hostile/hostile-express-sdk/issues"
},
"scripts": {
"build": "npx tsc && npx tsc-alias",
"eslint:lint": "eslint ./lib/*",
"eslint:fix": "eslint ./lib/* --fix",
"start:dev": "npx tsc && nodemon example/index.ts",
"prepare": "husky install",
"test": "jest"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"lib",
"demo"
],
"ext": "ts, js"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"axios": "^1.6.8",
"dotenv": "^16.1.4",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"express": "^4.19.2",
"husky": "^9.0.11",
"nodemon": "^3.1.4",
"prettier": "^3.1.0",
"redis": "^4.6.7",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"typescript": "^5.2.2"
},
"author": "Hostile Dev Team",
"repository": {
"type": "git",
"url": "https://github.com/hostile/hostile-express-sdk.git"
},
"dependencies": {
"jsonwebtoken": "^9.0.2"
}
}