-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "information-retrieval-system",
"version": "1.0.0",
"description": "students grades",
"main": "server.ts",
"scripts": {
"start:dev": "ts-node-dev --respawn --transpile-only ./src/server.ts",
"build": "tsc",
"start": "npm run build && node dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Adosh74/Information-Retrival-System"
},
"author": "Mohamed Shebl",
"license": "ISC",
"dependencies": {
"@types/stemmer": "^2.0.0",
"colors": "^1.4.0",
"express": "^4.18.2",
"natural": "^6.8.0",
"stemmer": "^2.0.1",
"stopword": "^2.0.8"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/express": "^4.17.17",
"@types/natural": "^5.1.5",
"@types/stopword": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
}
}