-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.64 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
81
82
83
84
85
{
"name": "polyflow",
"version": "1.7.2",
"description": "",
"private": false,
"scripts": {
"start": "node dist",
"build": "tsc",
"dev": "nodemon -e ts,json --exec \"ts-node src\"",
"start:prod": "NODE_ENV=production node dist",
"test": "jest --runInBand",
"test:watch": "jest --runInBand --watch",
"test:cover": "jest --runInBand --collectCoverage --coverageDirectory ./coverage",
"process-logs": "FILE=examples/Provenance/logs node examples/Provenance/processLogFile.js",
"kepler-entity-model": "node examples/Provenance/Kepler.js",
"swift-entity-model": "node examples/Provenance/Swift.js",
"new-version": "standard-version; git push --follow-tags origin master; git checkout HEAD -- CHANGELOG.md",
"format": "prettier-standard $(git diff --name-only --cached) --fix",
"lint": "tslint --fix src/**/*.ts",
"lint:ci": "tslint src/**/*.ts",
"lint:pc": "tslint --fix src/**/*.ts",
"add-changed-files": "git add $(git diff --name-only --cached --diff-filter=d)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yanmendes/polyflow.git"
},
"author": "Yan Mendes",
"license": "ISC",
"bugs": {
"url": "https://github.com/yanmendes/polyflow/issues"
},
"homepage": "https://github.com/yanmendes/polyflow#readme",
"dependencies": {
"apollo-server-express": "^2.4.2",
"bcrypt": "^3.0.6",
"cookie-parser": "^1.4.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-pino-logger": "^4.0.0",
"graphql": "^14.1.1",
"graphql-type-json": "^0.2.4",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.0",
"pg": "^7.4.3",
"pino": "^5.11.1",
"pino-pretty": "^2.5.0",
"promise-mysql": "^3.3.2",
"tagged-template-noop": "^2.1.0",
"typeorm": "^0.2.13"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.4",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.1",
"@types/graphql-type-json": "^0.1.3",
"@types/jest": "^24.0.15",
"@types/jsonwebtoken": "^8.3.5",
"@types/node-fetch": "^2.3.7",
"@types/pg": "^7.4.11",
"@types/pino": "^5.8.7",
"apollo-boost": "^0.4.3",
"babel-core": "^7.0.0-bridge.0",
"codecov": "^3.1.0",
"jest": "^24.8.0",
"nodemon": "^1.18.9",
"pre-commit": "^1.2.2",
"prettier-standard": "^15.0.1",
"standard-version": "^7.1.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.5.3"
},
"pre-commit": [
"format",
"lint:pc",
"add-changed-files"
]
}