-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.47 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
{
"name": "@pristine/indexing-engine",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig.json",
"bundle": "rollup -c rollup.config.js --compact",
"bundle:min": "rollup -c rollup.min.config.js --compact",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@awslabs-community-fork/dynamodb-data-mapper": "^0.7.9",
"@awslabs-community-fork/dynamodb-data-mapper-annotations": "^0.7.9",
"@pristine-ts/aws": "^0.0.49",
"@pristine-ts/common": "^0.0.49",
"@pristine-ts/configuration": "^0.0.49",
"@pristine-ts/core": "^0.0.49",
"@pristine-ts/event": "^0.0.49",
"@pristine-ts/jwt": "^0.0.49",
"@pristine-ts/logging": "^0.0.49",
"@pristine-ts/networking": "^0.0.49",
"@pristine-ts/security": "^0.0.49",
"@pristine-ts/sentry": "^0.0.49",
"aws-lambda": "^1.0.6",
"date-fns": "^2.21.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@pristine-ts/express": "^0.0.49",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/aws-lambda": "^8.10.75",
"@types/date-fns": "^2.6.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"jest": "^26.6.3",
"rollup": "^2.47.0",
"rollup-plugin-cleanup": "^3.2.1",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": {
"strictNullChecks": false
}
}
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverageFrom": [
"src/*.{js,ts}"
]
}
}