-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.25 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
62
63
64
65
66
{
"name": "facts_calculator_service",
"version": "1.0.0",
"description": "Sticker price processing service that interacts with financial_facts_service to deliver discounts and financial data to frontend",
"main": "index.js",
"scripts": {
"test": "ts-mocha --paths -p ./tsconfig.json test/**/*.spec.ts --exit",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"start": "ts-node -r tsconfig-paths/register main.ts",
"dev": "tsc-watch --onSuccess \"npm run start\"",
"build": "tsc",
"generate_schema": "npx supabase gen types typescript --project-id \"gryjgqyrnxtfsswnyttk\" --schema public > ./src/services/discount/supabase-discount/supabase-schema.ts"
},
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Choochera/facts_calculator_service.git"
},
"author": "Choochera",
"license": "ISC",
"bugs": {
"url": "https://github.com/Choochera/facts_calculator_service/issues"
},
"homepage": "https://github.com/Choochera/facts_calculator_service#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/aws-lambda": "^8.10.123",
"@types/compression": "^1.7.2",
"@types/jsdom": "^21.1.3",
"@types/node": "^18.17.2",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.6",
"supabase": "^1.151.1",
"tsc-watch": "^6.0.0",
"tsconfig-paths": "^4.2.0"
},
"dependencies": {
"@aws-sdk/client-ssm": "^3.385.0",
"@supabase/supabase-js": "^2.41.1",
"@types/module-alias": "^2.0.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"jsdom": "^22.1.0",
"module-alias": "^2.2.2",
"node-fetch": "^2.6.9",
"nyc": "^15.1.0",
"random-words": "^1.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"_moduleAliases": {
"@/resources": "./src/resources",
"@/utils": "./src/utils",
"@/middleware": "./src/middleware",
"@/services": "./src/services",
"@/src": "./src",
"@/test": "./test"
}
}