-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
32 lines (32 loc) · 938 Bytes
/
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
{
"name": "firegraph",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"version": "1.0.14",
"license": "MIT",
"scripts": {
"test": "jest --env=node --detectOpenHandles --forceExit",
"start": "ts-node src/index.ts",
"build": "tsc -p tsconfig.json --outDir lib",
"examples:types": "ts-node example/types.ts",
"examples:references": "ts-node example/references.ts",
"prepublish": "yarn build && npm-auto-version",
"postpublish": "git push origin --tags",
"format": "prettier --write ."
},
"dependencies": {
"firebase": "^8.7.1",
"graphql": "^15.5.1",
"graphql-tag": "^2.12.5"
},
"devDependencies": {
"@types/jest": "^23.3.14",
"firestore-mock": "git+https://github.com/Taosif7/firestore-mock.git",
"jest": "^27.0.6",
"npm-auto-version": "^1.0.0",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.10"
}
}