This repository was archived by the owner on Mar 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.32 KB
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
86
87
88
89
90
91
92
93
94
{
"name": "brainhub-framework-app",
"version": "1.0.0-alpha.1",
"description": "Brainhub framework app",
"main": "dist",
"scripts": {
"start": "NODE_ENV=production NODE_PATH=./packages/hadron-demo/dist npm start --prefix packages/hadron-demo",
"start:dev": "NODE_ENV=development NODE_PATH=./packages/hadron-demo nodemon --watch 'packages/hadron-demo/**/*.ts' --watch .rebuild.ts --ignore 'packages/hadron-demo/**/*.spec.ts' --exec 'ts-node' packages/hadron-demo/index.ts",
"start:lerna": "nodemon --watch 'packages/**/*.ts' --exec 'npm run build && touch .rebuild.ts' -e ts",
"build": "lerna bootstrap",
"prestart": "npm run build",
"precommit": "lint-staged",
"lint": "lerna exec --bail=false -- tslint -c \\$LERNA_ROOT_PATH/tslint.json -p ./tsconfig.json --format stylish",
"lint:fix": "lerna exec --bail=false -- tslint -c \\$LERNA_ROOT_PATH/tslint.json -p \\packages/$LERNA_PACKAGE_NAME/tsconfig.json --format stylish",
"test": "lerna bootstrap && npm run -s test:unit && npm run -s test:e2e",
"test:unit": "NODE_ENV=test NODE_PATH=src:lib mocha -r ts-node/register tools/testSetup.ts './**/__tests__/*.ts'",
"test:unit:watch": "npm run test:unit -- --reporter min --watch-extensions ts --watch",
"test:unit:coverage": "NODE_ENV=test NODE_PATH=src:lib nyc mocha -r ts-node/register tools/testSetup.ts './**/__tests__/*.ts'",
"test:e2e": "./test.sh",
"test:cucumber": "NODE_ENV=test ./node_modules/.bin/cucumberjs --compiler=ts:ts-node/register",
"docker:build": "docker build -t brainhub-framework-app .",
"format": "prettier --write \"*/**/*.ts\"",
"tsc": "lerna exec tsc --parallel",
"clean": "bash ./scripts/clean",
"postinstall": "lerna bootstrap"
},
"author": "Brainhub",
"license": "MIT",
"dependencies": {
"@types/bunyan": "1.8.4",
"body-parser": "1.18.2",
"dotenv": "4.0.0",
"mysql": "2.15.0",
"pg": "7.4.1",
"pm2": "github:Unitech/pm2#development"
},
"devDependencies": {
"@types/chai": "4.1.2",
"@types/chai-as-promised": "7.1.0",
"@types/cucumber": "4.0.1",
"@types/dotenv": "4.0.2",
"@types/fs-extra": "5.0.1",
"@types/mocha": "2.2.48",
"@types/multer": "1.3.6",
"@types/node": "9.4.6",
"@types/sinon": "4.1.3",
"@types/sinon-chai": "2.7.29",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"concurrently": "3.5.1",
"cucumber": "3.1.0",
"cucumber-steps": "git+https://github.com/brainhubeu/cucumber-steps.git",
"dirty-chai": "2.0.1",
"husky": "0.14.3",
"lerna": "^2.9.0",
"lint-staged": "7.0.0",
"mocha": "4.0.1",
"nodemon": "1.12.1",
"nyc": "11.6.0",
"prettier": "1.11.1",
"reflect-metadata": "0.1.12",
"sinon": "4.1.2",
"sinon-chai": "2.14.0",
"superagent": "3.8.2",
"ts-node": "5.0.0",
"tslint": "5.9.1",
"tslint-config-airbnb": "5.7.0",
"tslint-config-prettier": "1.10.0",
"tslint-eslint-rules": "5.1.0",
"typescript": "2.7.2"
},
"nyc": {
"extension": [
".ts"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint:fix",
"git add"
],
"*.{ts,js,json,css,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "ssh://git@git.brainhub.pl:2222/brainhub-framework/brainhub-framework-app.git"
},
"keywords": [
"hadron"
]
}