-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.69 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
67
68
69
{
"name": "node-fts",
"version": "1.0.0",
"description": "full text search design in node",
"main": "bin/server.js",
"scripts": {
"dev": "nodemon",
"build": "tsc -p tsconfig.json",
"start": "node bin/server.js",
"lint": "eslint --fix --ext .ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Akshit8/node-fts.git"
},
"keywords": [
"node",
"fts",
"typescript"
],
"author": "akshitsadana@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/Akshit8/node-fts/issues"
},
"homepage": "https://github.com/Akshit8/node-fts#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"npm run format",
"npm run lint"
]
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^4.3.8",
"jest": "^27.4.5",
"lint-staged": "^12.1.2",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"supertest": "^6.1.6",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.6.0"
}
}