-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.77 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
{
"name": "@devtography/tyodm",
"version": "0.1.0-rc.4",
"description": "Fully typed ODM designed to work with various NoSQL database engines.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"jest": "AWS_ACCESS_KEY_ID=fakeKeyId AWS_SECRET_ACCESS_KEY=fakeSecretAccessKey jest --detectOpenHandles --verbose",
"test": "jest --detectOpenHandles --coverage --verbose --setupFiles dotenv/config",
"watch-test": "npm run test -- --watchAll",
"next-rc": "npm --no-git-tag-version version prerelease --preid=rc",
"next-patch": "npm --no-git-tag-version version prepatch",
"next-minor": "npm --no-git-tag-version version preminor",
"next-major": "npm --no-git-tag-version version premajor"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/Devtography/tyodm.git"
},
"keywords": [
"Node.js",
"TypeScript",
"Jest",
"ODM",
"NoSQL"
],
"author": "Wing Chau",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.25.0",
"is-number": "^7.0.0",
"ulid": "^2.3.0"
},
"devDependencies": {
"@types/is-number": "^7.0.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"dotenv": "^10.0.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^27.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.3.2"
}
}