-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "cordova-air-update-server",
"version": "0.0.8",
"description": "AirUupdate server part",
"author": "Raman Rasliuk <[email protected]>",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf ./dist/*",
"lint": "tslint --config tslint.json --project tsconfig.json --type-check --format stylish",
"build": "npm run clean && npm run lint && tsc",
"watch": "tsc -w",
"dev": "nodemon \"bin/cau-server -c testSrv/config.json\" --ignore testSrv/ --ignore src/"
},
"bin": {
"cau-server": "./bin/cau-server"
},
"files": [
"bin/",
"dist/"
],
"license": "MIT",
"dependencies": {
"archiver": "^2.0.3",
"body-parser": "^1.17.2",
"commander": "^2.11.0",
"decompress": "^4.2.0",
"express": "^4.15.4",
"fs-extra": "^4.0.1",
"jsonwebtoken": "^7.4.3",
"lodash": "^4.17.4",
"mongoose": "^4.11.9",
"morgan": "^1.8.2",
"multer": "^1.3.0",
"semver": "^5.4.1",
"tslib": "^1.7.1"
},
"devDependencies": {
"@types/archiver": "^2.0.0",
"@types/body-parser": "^1.16.5",
"@types/express": "^4.0.37",
"@types/fs-extra": "^4.0.1",
"@types/jsonwebtoken": "^7.2.3",
"@types/lodash": "^4.14.74",
"@types/mongoose": "^4.7.21",
"@types/morgan": "^1.7.32",
"@types/multer": "^1.3.3",
"@types/node": "^8.0.26",
"@types/semver": "^5.4.0",
"tslint": "^5.7.0",
"typescript": "^2.5.2"
}
}