-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
47 lines (47 loc) · 1.48 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
{
"name": "@flowfact/api-services",
"version": "11.0.0-SNAPSHOT",
"description": "middleware of flowfact to interact between frontend and backend",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"repository": "ssh://git@github.com:FLOWFACTCorp/ff-api-services.git",
"author": "FLOWFACT GmbH",
"license": "SEE LICENSE IN LICENSE",
"sideEffects": false,
"scripts": {
"build:cjs": "tsc",
"build:esm": "tsc --project tsconfig.esm.json",
"rebuild:cjs": "rimraf lib/ && yarn run build:cjs",
"rebuild:esm": "rimraf es/ && yarn run build:esm",
"prepare": "yarn run rebuild:cjs && yarn run rebuild:esm",
"lint": "tslint --project .",
"doc": "typedoc --out doc/",
"local": "node pack.js platform-apps",
"upgradeTypes": "yarn add @flowfact/types --latest"
},
"dependencies": {
"@flowfact/consul-client": "^0.20190425.7",
"@flowfact/node-flowdsl": "^1.20190520.14",
"@flowfact/types": "^1.20190808.58",
"@types/graphql": "14.0.7",
"@types/node": "^8.5.9",
"@types/prop-types": "^15.5.1",
"@types/qs": "^6.5.1",
"@types/storejs": "^1.3.1",
"@types/uuid": "^3.4.4",
"aws-amplify": "1.1.19",
"axios": "^0.18.1",
"detect-node": "^2.0.3",
"qs": "^6.5.2",
"store": "^2.0.12",
"tslib": "^1.9.3"
},
"devDependencies": {
"amazon-cognito-identity-js": "3.0.9",
"recursive-search": "^1.0.1",
"rimraf": "^2.6.2",
"tslint": "^5.18.0",
"typescript": "^3.0.3"
}
}