-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.38 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
72
73
74
75
76
77
78
79
80
{
"name": "@flowbuild/diagrams",
"version": "1.5.0",
"description": "Service to handle diagrams manager",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"start:dev": "nodemon src/server.js",
"test": "jest --coverage --runInBand --forceExit",
"lint": "eslint ./src --ext .js --max-warnings=0",
"lint:fix": "eslint ./src --ext .js --max-warnings=0 --fix",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js)\"",
"migrations": "knex --env ${KNEX_ENV} --knexfile knexfile.js migrate:latest",
"seeds": "knex --env ${KNEX_ENV} --knexfile knexfile.js seed:run",
"migrations:local": "knex --env test --knexfile knexfile.js migrate:latest",
"seeds:local": "knex --env test --knexfile knexfile.js seed:run",
"get-version": "echo $npm_package_version",
"release": "semantic-release",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flow-build/diagrams.git"
},
"keywords": [
"bpmn",
"flowbuild",
"processes"
],
"author": "Pedro Assis",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/flow-build/diagrams/issues"
},
"homepage": "https://github.com/flow-build/diagrams#readme",
"devDependencies": {
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.1",
"conventional-changelog-conventionalcommits": "5.0.0",
"eslint": "8.23.0",
"eslint-config-prettier": "8.8.0",
"husky": "8.0.3",
"jest": "28.1.3",
"nodemon": "2.0.19",
"prettier": "2.8.8",
"semantic-release": "19.0.5",
"supertest": "6.2.4"
},
"dependencies": {
"@flowbuild/diagrams-core": "1.6.0",
"@flowbuild/nodejs-diagram-builder": "1.1.0",
"@koa/router": "12.0.0",
"ajv": "8.11.0",
"ajv-formats": "2.1.1",
"ajv-keywords": "5.1.0",
"axios": "1.1.2",
"cls-rtracer": "2.6.2",
"dotenv": "16.0.2",
"jsonwebtoken": "9.0.0",
"jsrsasign": "10.5.27",
"knex": "2.4.2",
"koa": "2.13.4",
"koa-bodyparser": "4.3.0",
"koa-jwt": "4.0.4",
"koa-logger-winston": "0.0.2",
"koa-static": "5.0.0",
"koa2-cors": "2.0.6",
"lodash": "4.17.21",
"nock": "13.2.9",
"pg": "8.8.0",
"swagger-ui-dist": "4.14.0",
"uuid": "8.3.2",
"winston": "3.8.2",
"xml2js": "0.4.23"
}
}