-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.64 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
{
"name": "bookmarks_server",
"version": "0.0.1",
"description": "bookmarks_server initialised with create-express-typescript-application.",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"start": "node ./build/src/index.js",
"dev": "ts-node ./src/index.ts",
"dev:nodemon": "nodemon -w src -e ts,json -x ts-node ./src/index.ts",
"start:dev": "node -r dotenv/config ./build/src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"express",
"typescript"
],
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^14.18.9",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"nodemon": "^2.0.20",
"ts-node": "^9.1.1",
"typescript": "^4.5.5"
},
"dependencies": {
"@types/jsonwebtoken": "^8.5.9",
"@types/password-hash": "^1.2.21",
"@types/uuid": "^9.0.0",
"@types/xmldom": "^0.1.31",
"axios": "^1.1.3",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"env-cmd": "^10.1.0",
"express": "^4.17.2",
"fs": "^0.0.1-security",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.3.1",
"morgan": "^1.10.0",
"node-fetch": "^3.3.0",
"node-html-parser": "^6.1.4",
"password-hash": "^1.2.2",
"properties-reader": "^2.2.0",
"query-string": "^7.1.0",
"typescript-http-client": "^0.10.4",
"uuid": "^9.0.0",
"websockets": "^0.2.0",
"ws": "^8.4.2",
"xhr2": "^0.2.1",
"xmldom": "^0.6.0",
"xmlhttprequest": "^1.8.0"
}
}