This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
generated from ivandotv/microbundle-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.94 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
{
"name": "jest-database-containers",
"version": "0.0.0",
"description": "",
"keywords": [],
"private": true,
"author": "Ivan Vlatkovic",
"license": "MIT",
"main": "./dist/prod/jest-database-containers.js",
"umd": "./dist/prod/jest-database-containers.umd.js",
"exports": {
"development": "./dist/dev/jest-database-containers.esm.js",
"import": "./dist/prod/jest-database-containers.esm.js",
"require": "./dist/prod/jest-database-containers.js"
},
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"test:db": "jest --selectProjects database",
"test": "jest --verbose",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivandotv/jest-database-containers.git"
},
"bugs": {
"url": "https://github.com/ivandotv/jest-database-containers/issues"
},
"homepage": "https://github.com/ivandotv/jest-database-containers#readme",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@changesets/cli": "^2.22.0",
"@types/jest": "^28.1.0",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"cross-env": "^7.0.3",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.4.6",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-tsdoc": "^0.2.16",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-mock-console": "^2.0.0",
"jest-watch-typeahead": "^1.1.0",
"lint-staged": "^13.0.0",
"microbundle": "^0.15.0",
"prettier": "^2.6.2",
"shx": "^0.3.4",
"testcontainers": "^9.8.0",
"time-span": "^4.0.0",
"typescript": "^4.7.3"
},
"dependencies": {
"mongodb": "^4.6.0",
"pg": "^8.7.3"
}
}