-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.87 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
62
63
64
65
66
{
"name": "core-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts",
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore . --fix",
"build": "tsc",
"prepare": "husky install",
"husky-setup:init": "npm set-script prepare 'husky install' && npm run prepare",
"husky-setup:hooks": "npx husky add .husky/pre-commit 'lint-staged'",
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EnchanteHQ/core-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/EnchanteHQ/core-api/issues"
},
"homepage": "https://github.com/EnchanteHQ/core-api#readme",
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/crypto-js": "^4.0.1",
"@types/node": "14.x",
"@types/passport": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"dependencies": {
"@types/express": "^4.17.12",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"firebase-admin": "^9.10.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.12.15",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0"
},
"lint-staged": {
"*.ts": [
"./node_modules/.bin/eslint --ignore-path .gitignore . --fix"
]
}
}