-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.34 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
{
"name": "karate",
"private": true,
"version": "0.0.1",
"scripts": {
"lint": "tslint --fix --project tsconfig.json",
"lint:staged": "lint-staged",
"test": "jest",
"postinstall": "lerna bootstrap",
"format": "prettier --write \"packages/**/*.ts\"",
"test:watch": "jest --watch",
"dynamodb:scraper": "lerna run dynamodb --scope karate-scraper",
"dev:scraper": "lerna run dev --scope karate-scraper --stream",
"package:scraper": "lerna run package --scope karate-scraper --stream",
"deploy:scraper": "lerna run deploy --scope karate-scraper --stream",
"remove:scraper": "lerna run remove --scope karate-scraper --stream",
"package:sensei": "lerna run package --scope karate-sensei --stream",
"deploy:sensei": "lerna run deploy --scope karate-sensei --stream",
"remove:sensei": "lerna run remove --scope karate-sensei --stream",
"deploy:classifier": "lerna run deploy --scope karate-classifier --stream"
},
"author": "siarhei.m.a@gmail.com",
"license": "MIT",
"devDependencies": {
"@types/jest": "^22.1.3",
"@types/node": "^9.4.6",
"awesome-typescript-loader": "^3.5.0",
"babili-webpack-plugin": "^0.1.2",
"jest": "^22.4.2",
"lerna": "^2.5.1",
"lint-staged": "^7.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.11.0",
"serverless": "^1.26.1",
"serverless-dynamodb-local": "^0.2.27",
"serverless-offline": "^3.18.0",
"serverless-pseudo-parameters": "^1.4.2",
"serverless-step-functions": "^1.3.0",
"serverless-webpack": "4.3.0",
"ts-jest": "^22.4.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.9.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.7.2",
"webpack": "^3.11.0",
"webpack-node-externals": "^1.6.0"
},
"lint-staged": {
"*.{ts}": [
"lint",
"npm run format",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"parser": "typescript",
"printWidth": 80
},
"pre-commit": "lint:staged",
"jest": {
"roots": [
"<rootDir>/packages"
],
"transformIgnorePatterns": [],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}