-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.88 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
{
"name": "@worldbrain/storex-backend-sql",
"version": "0.1.0",
"description": "Storex SQL backend",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"prepare": "tsc",
"prepare:watch": "npm run prepare -- -w",
"test": "mocha --require ts-node/register \"ts/**/*.test.ts\"",
"test:watch": "mocha -r source-map-support/register -r ts-node/register \"ts/**/*.test.ts\" --watch --watch-extensions ts",
"format": "prettier --config prettier.config.js --write '**/*.{ts,js,tsx,jsx,css,md}'",
"postgres:start": "yarn postgres stop; sudo docker run --name storex-test-postgres -p 127.0.0.1:5435:5432/tcp -e POSTGRES_PASSWORD=storex -d postgres",
"postgres:stop": "sudo docker rm -f storex-test-postgres"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"keywords": [
"storage",
"graph",
"database",
"typescript"
],
"author": "Vincent den Boer",
"repository": {
"type": "git",
"url": "https://github.com/WorldBrain/storex-backend-sql.git"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/better-sqlite3": "^7.5.0",
"@types/chai": "^4.0.6",
"@types/events": "^1.2.0",
"@types/expect": "^1.20.4",
"@types/mocha": "^2.2.44",
"@types/node": "^10.9.4",
"@types/pg": "^8.6.5",
"@worldbrain/storex": "^0.4.1",
"better-sqlite3": "^7.5.3",
"expect": "^28.1.0",
"husky": "2.3.0",
"mocha": "^10.0.0",
"pg": "^8.7.3",
"pgtools": "^0.3.2",
"pg-utils": "^0.1.8",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"peerDependencies": {
"@worldbrain/storex": "^0.4.1"
}
}