-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.48 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": "guild-scrivener",
"version": "0.0.1",
"main": "dist/index.js",
"author": "JacobMGEvans",
"license": "GNU GPLv3",
"description": "",
"files": [
"src"
],
"scripts": {
"firestore": "cross-env FIRESTORE_EMULATOR_HOST=\"localhost:8080\" firebase emulators:exec --only firestore",
"local": "npm run firestore -- --ui \"nodemon ./src/index.ts\"",
"start": "node ./dist/index.js",
"build": "tsc",
"test": "npm run firestore -- \"jest --watch\"",
"test:ci": "npm run firestore -- \"jest --coverage\""
},
"dependencies": {
"@octokit/auth-token": "^2.4.5",
"@octokit/rest": "^18.1.1",
"@octokit/webhooks": "^8.4.1",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"fastify": "^3.12.0",
"firebase-admin": "^9.5.0",
"got": "^11.8.1",
"middie": "^5.2.0",
"nodemon": "^2.0.7"
},
"devDependencies": {
"@firebase/testing": "^0.20.11",
"@types/connect": "^3.4.34",
"@types/faker": "^5.1.6",
"@types/jest": "^26.0.20",
"cross-env": "^7.0.3",
"faker": "^5.4.0",
"firebase-tools": "^9.3.0",
"jest": "^26.6.3",
"msw": "^0.26.2",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"nodemonConfig": {
"ignore": [
"**/*.test.*",
"src/testUtils/*",
"node_modules/*",
".github"
],
"delay": "1000"
}
}