-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.87 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": "boost",
"version": "1.0.0",
"description": "",
"main": "./dist/src/v1/index.js",
"scripts": {
"start:dev": "ts-node -r tsconfig-paths/register src/v1/index.ts",
"start:prod": "node -r ts-node/register/transpile-only -r tsconfig-paths/register ./dist/src/v1/index.js",
"build": "tsc -p tsconfig.prod.json && tsc-alias -p tsconfig.prod.json",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"deploy": "firebase deploy --only functions:api"
},
"author": "Hamdaan Ali",
"license": "ISC",
"devDependencies": {
"@types/dotenv-safe": "^8.1.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^42.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3"
},
"dependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.6",
"@graphql-codegen/typescript-operations": "^4.2.0",
"@graphql-codegen/typescript-resolvers": "^4.0.6",
"apollo-server": "^3.13.0",
"axios": "^1.6.7",
"axios-mock-adapter": "^1.22.0",
"big-integer": "^1.6.52",
"bigint-mod-arith": "^3.3.1",
"dotenv-safe": "^8.2.0",
"express": "^4.18.3",
"express-graphql": "^0.12.0",
"firebase": "^10.7.1",
"firebase-admin": "^11.0.0",
"firebase-functions": "^4.5.0",
"graphql": "^15.8.0",
"modpow": "^1.0.0",
"querystring": "^0.2.1"
},
"engines": {
"node": "18"
}
}