-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.26 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
{
"name": "glabs",
"version": "1.0.0",
"description": "A service to parse xml to json",
"main": "parseXML.js",
"scripts": {
"build": "tsc --outDir ./dist",
"start": "PORT=3001 NODE_ENV=development node ./dist/server.js",
"docker:build": "docker-compose build",
"docker:start": "docker-compose up -d",
"start:db": "mongod --dbpath=./db --port 27017",
"test": "mocha ./__tests__/*",
"docs": "typedoc --tsconfig ./tsconfig.json --out docs && node serverDocs.js"
},
"author": "“Alexander Morton\" <“alex@alexandermorton.co.uk”> (https://alexandermorton.co.uk)",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.141.0",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"fs": "0.0.1-security",
"jade": "^1.11.0",
"mongodb": "^2.2.33",
"multer": "^1.3.0",
"path": "^0.12.7",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/body-parser": "^1.16.7",
"@types/express": "^4.0.39",
"@types/jade": "0.0.30",
"@types/mongodb": "^2.2.15",
"@types/multer": "^1.3.5",
"@types/xml2js": "^0.4.0",
"eslint": "^4.10.0",
"mocha": "^4.0.1",
"tslint": "^5.8.0",
"tslint-react": "^3.2.0",
"typedocs": "^0.6.3",
"typescript": "^2.5.3"
}
}