-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.71 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
{
"name": "where-the-fuck-are-my-books",
"version": "0.0.1",
"description": "The where the fuck are my books API",
"main": "src/index.js",
"scripts": {
"build": "tsc",
"rebuild": "rm -rf dist && npm run build",
"watch": "nodemon",
"build:publish": "npm run rebuild",
"test": "mocha --require ts-node/register ./test/*.spec.ts",
"pretty": "prettier --check ./src/**/*.ts",
"pretty:fix": "prettier --write ./src/**/*.ts",
"postinstall": "node-config-ts"
},
"keywords": [],
"author": "Johnny Reina <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.12",
"@types/express": "^4.17.8",
"@types/lodash": "^4.14.161",
"@types/mocha": "^8.0.3",
"@types/mongodb": "^3.5.27",
"@types/morgan": "^1.9.1",
"@types/passport": "^1.0.4",
"@types/passport-local": "^1.0.33",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"chai": "^4.2.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,md}": "prettier --write"
},
"dependencies": {
"ajv": "^6.12.5",
"bcrypt": "^5.0.0",
"express": "^4.17.1",
"lodash": "^4.17.20",
"mongodb": "^3.6.2",
"morgan": "^1.10.0",
"node-config-ts": "^3.1.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0"
}
}