-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
121 lines (121 loc) · 3.2 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "babelsheet",
"version": "1.5.0",
"description": "",
"homepage": "https://github.com/TheSoftwareHouse/babelsheet-js#readme",
"main": "build/index.js",
"scripts": {
"test": "jest --coverage",
"test-watch": "jest --watch",
"format": "prettier --write 'src/**/*.ts'",
"type-check": "tsc --noEmit",
"build": "tsc",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint-fix": "tslint -c tslint.json 'src/**/*.ts' --fix",
"nsp": "nsp check",
"start-producer": "node build/services/producer/index.js",
"start-api": "node build/services/api/index.js",
"dev-install": "pm2 install typescript",
"dev-start-producer": "cross-env TS_NODE_FILES=true pm2 start --name translations-producer src/services/producer/index.ts",
"dev-start-api": "cross-env TS_NODE_FILES=true pm2 start --name translations-api src/services/api/index.ts"
},
"bin": {
"babelsheet": "./build/services/cli/index.js"
},
"preferGlobal": true,
"author": "The Software House",
"license": "MIT",
"dependencies": {
"await-to-js": "^2.0.1",
"awilix": "^3.0.6",
"celebrate": "^7.0.4",
"cors": "^2.8.4",
"dot-prop-immutable": "^1.4.0",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"google-auth-library": "^1.3.2",
"googleapis": "^27.0.0",
"helmet": "^3.12.0",
"js-yaml": "^3.12.0",
"json-mask": "^0.3.8",
"morgan": "^1.9.0",
"node-schedule": "^1.3.0",
"opn": "^5.3.0",
"ramda": "^0.25.0",
"redis": "^2.8.0",
"server-destroy": "^1.0.1",
"tsh-node-common": "^1.0.0",
"winston": "^2.4.1",
"xmlbuilder": "^10.0.0",
"yargs": "^12.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.3",
"@types/dotenv": "^4.0.2",
"@types/express": "^4.11.1",
"@types/glob": "^5.0.35",
"@types/helmet": "0.0.37",
"@types/jest": "^22.2.0",
"@types/joi": "^13.0.7",
"@types/js-yaml": "^3.11.2",
"@types/morgan": "^1.7.35",
"@types/node": "^9.4.7",
"@types/node-schedule": "^1.2.2",
"@types/opn": "^5.1.0",
"@types/ramda": "^0.25.21",
"@types/redis": "^2.8.6",
"@types/server-destroy": "^1.0.0",
"@types/supertest": "^2.0.4",
"@types/winston": "^2.3.8",
"@types/xmlbuilder": "0.0.32",
"@types/yargs": "^11.1.1",
"cross-env": "^5.2.0",
"husky": "^0.15.0-rc.8",
"jest": "^22.4.3",
"lint-staged": "^7.0.0",
"nsp": "^3.2.1",
"pm2": "^2.10.1",
"prettier": "^1.11.1",
"supertest": "^3.0.0",
"ts-jest": "^22.4.2",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"tslint-sonarts": "^1.6.0",
"typescript": "^2.7.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/index.ts",
"!src/**/*.d.ts"
],
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.test.json"
}
}
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}