-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 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
{
"name": "webpagewordcounter",
"version": "1.0.0",
"description": "Webpage (HTML) word counter",
"main": "server.ts",
"scripts": {
"start": "nodemon ./src/server.ts",
"prod": "ts-node ./src/server.ts",
"test": "jest",
"gencerts": "cd ssl && bash ./gencerts.sh && rm csr.pem",
"start-https": "HTTPS=1 nodemon ./src/server.ts",
"prod-https": "HTTPS=1 ts-node ./src/server.ts",
"apitest": "newman run WebpageWordCounter.postman_collection.json",
"apitest-https": "newman run WebpageWordCounter.postman_collection.json --ssl-client-cert ./ssl/cert.pem --ssl-client-key ./ssl/key.pem --insecure --env-var \"base_url=https://localhost:4000\""
},
"keywords": [],
"author": "Joseph Alton",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"html-word-count": "^2.0.0",
"newman": "^6.1.0",
"npm": "^10.3.0",
"prod": "^1.0.1",
"puppeteer": "^21.7.0",
"run": "^1.5.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"sync-fetch": "^0.5.2",
"word-counting": "^1.1.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/sync-fetch": "^0.4.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}