-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
61 lines (61 loc) · 1.66 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
{
"name": "bgio-postgres",
"version": "1.0.14",
"description": "Postgres storage adapter for boardgame.io library",
"homepage": "https://github.com/janKir/bgio-postgres#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/janKir/bgio-postgres.git"
},
"keywords": [
"boardgame.io",
"postgres",
"postgresql"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/*.{js,ts}\"",
"test": "jest --runInBand --config ./test/jest.config.js",
"test:cov": "npm test -- --coverage",
"test:db": "npm test",
"pretest:db": "docker-compose -f test/docker-compose.yml up -d",
"posttest:db": "docker-compose -f test/docker-compose.yml down"
},
"files": [
"lib/**/*"
],
"author": "jankir",
"license": "ISC",
"devDependencies": {
"@golevelup/ts-jest": "^0.3.3",
"@types/jest": "^29.1.2",
"@types/node": "^14.0.11",
"@types/validator": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"boardgame.io": "^0.42.2",
"eslint": "^7.16.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^29.2.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"dotenv": "^16.0.3",
"pg": "^8.2.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.5"
},
"peerDependencies": {
"boardgame.io": ">=0.40.0"
}
}