-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.33 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@cashfarm/examples-todo-api",
"version": "1.0.0",
"description": "The simplest possible ToDo API",
"main": "server.js",
"repository": "http://github.com/cashfarm/todo-api-example",
"author": "Saulo Vallory <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"ava:w": "ava --watch",
"build": "yarn run clean && yarn lint && yarn test && yarn compile && yarn lint:pkg",
"clean": "rm -rf ./lib && rm -rf tests/compiled",
"compile": "yarn tsc -- -p .",
"compile:w": "yarn tsc -- -p . -w",
"docs": "./node_modules/.bin/typedoc --out ./docs --target es6 --mode file --ignoreCompilerErrors",
"docs:publish": "./node_modules/.bin/gh-pages -d docs",
"lint": "tslint --project ./tsconfig.json -c ./tslint.json --type-check",
"lint:pkg": "ts-package-lint",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"start": "nodemon",
"test": "tsc -p tests && NODE_ENV=test ava",
"test:w": "NODE_ENV=test run-p compile:w test:compile:w ava:w",
"test:compile:w": "yarn tsc -- -p tests -w",
"tsc": "./node_modules/.bin/tsc",
"dev": "yarn run clean && yarn compile && DEBUG=orgs* run-p compile:w start"
},
"dependencies": {
"@cashfarm/lang": "^0.8.0",
"@cashfarm/plow": "^0.4.0-RC.1",
"@cashfarm/store": "^0.7.2",
"@cashfarm/tractor": "^0.0.3",
"blipp": "^2.3.0",
"boom": "^7.1.1",
"confidence": "^3.0.2",
"glue": "4",
"good": "^7.3.0",
"good-console": "^6.4.1",
"good-squeeze": "^5.0.2",
"hapi": "16.x.x",
"hapi-cors-headers": "^1.0.3",
"hapi-swagger": "^8.0.0",
"inert": "4.x.x",
"inversify": "^4.5.1",
"inversify-binding-decorators": "^3.0.0",
"joi": "^13.0.2",
"mysql": "^2.15.0",
"tv": "^6.1.0",
"vision": "4.x.x"
},
"devDependencies": {
"@types/boom": "^4.3.8",
"@types/chai": "^4.0.5",
"@types/chai-as-promised": "^7.1.0",
"@types/hapi": "^16.1.11",
"@types/joi": "^13.0.0",
"@types/mysql": "^2.15.2",
"@types/rimraf": "^2.0.2",
"ava": "^0.16.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"npm-run-all": "^4.0.2",
"rimraf": "^2.5.4",
"ts-node": "^3.3.0",
"ts-package-lint": "^0.2.2",
"tslint": "^5.5.0",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^2.6.1",
"typings": "^1.3.2"
}
}