-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.03 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
{
"name": "web-dossier-backend",
"version": "1.0.0",
"description": "Backend for Web Dossier - Web analytics on demand.",
"main": "dist/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"ts-check": "tsc --noEmit",
"prod": "NODE_ENV=production && pm2 start dist/server.js --name=\"web-dossier-api\" -i max --watch dist/ -- PROD",
"testprod": "NODE_ENV=production && node dist/server.js TESTPROD",
"dev": "NODE_ENV=development && nodemon dist/server.js DEV"
},
"author": "David J. Cunningham <[email protected]>",
"license": "ISC",
"devDependencies": {
"nodemon": "^1.18.9",
"typescript": "^3.3.1"
},
"dependencies": {
"@types/express": "^4.16.1",
"@types/jsdom": "^12.2.1",
"@types/morgan": "^1.7.35",
"@types/sanitize-html": "^1.18.2",
"express": "^4.16.4",
"jsdom": "^13.2.0",
"morgan": "^1.9.1",
"sanitize-html": "^1.20.0"
},
"keywords": [
"nodejs",
"express",
"api",
"typescript",
"jsdom"
]
}