-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.13 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
{
"name": "pro-golf-scores-google-assistant",
"author": "Alex Zissis <[email protected]>",
"description": "A Google Assistant action for professional golf scores",
"version": "0.0.1",
"engines": {
"node": ">=16"
},
"type": "module",
"private": true,
"dependencies": {
"@assistant/conversation": "^3.8.1",
"@nextools/suppress-experimental-warnings": "^0.1.0",
"@zicodev/micro": "^0.1.0",
"date-fns": "^2.28.0",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"i18n-iso-countries": "^7.2.0",
"node-fetch": "^3.1.0",
"number-to-words": "^1.2.4",
"ordinal": "^1.0.3",
"patch-package": "^6.4.7",
"pluralize": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"ssml-tsx": "^1.0.10",
"ts-case-convert": "^1.3.1",
"winston": "^3.4.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/number-to-words": "^1.2.1",
"@types/pluralize": "^0.0.29",
"@types/supertest": "^2.0.11",
"@typescript-eslint/parser": "^5.9.1",
"@zicodev/eslint-config-zico": "^0.0.2-c",
"eslint": "^8.7.0",
"jest": "^27.4.7",
"nodemon": "^2.0.15",
"ssml-check": "^0.4.2",
"supertest": "^6.2.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts,.tsx --resolve-plugins-relative-to node_modules/@zicodev/eslint-config-zico src",
"postinstall": "patch-package",
"start:dev": "NODE_ENV=development nodemon -e tsx,ts --exec 'node -r @nextools/suppress-experimental-warnings --experimental-specifier-resolution=node --loader ts-node/esm' src/server.ts mock",
"start:prod": "NODE_ENV=production node -r @nextools/suppress-experimental-warnings dist/server.js",
"test": "NODE_ENV=test node -r @nextools/suppress-experimental-warnings --experimental-vm-modules node_modules/jest/bin/jest.js"
}
}