-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 3.43 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"dependencies": {
"@babel/preset-typescript": "^7.23.3",
"@google/generative-ai": "^0.21.0",
"@react-spring/web": "^9.5.5",
"@sendgrid/mail": "^7.4.4",
"@use-gesture/react": "^10.2.22",
"browserslist": "^4.12.0",
"chalk": "^4.1.0",
"dompurify": "^3.0.8",
"express": "^4.17.3",
"heap-js": "^2.1.4",
"jquery": "^3.7.1",
"jsdom": "^24.0.0",
"json-stable-stringify": "^1.0.1",
"kosher-zmanim": "^0.8.2",
"levenshtein-edit-distance": "^2.0.5",
"luxon": "^3.4.3",
"make-fetch-happen": "^13.0.0",
"moment": "^2.29.4",
"mousetrap": "^1.6.5",
"nunjucks": "^3.2.4",
"openai": "^4.69.0",
"parcel-bundler": "^1.12.4",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-contenteditable": "^3.3.7",
"react-dom": "^16.13.1",
"react-swipeable-views": "^0.14.0",
"react-swipeable-views-utils": "^0.14.0",
"react-use-measure": "^2.1.1",
"showdown": "^2.1.0",
"typescript": "^4.9.4",
"underscore": "^1.10.2",
"uuid": "^8.3.0",
"zod": "^3.23.8"
},
"scripts": {
"test": "jest --colors",
"dev": "nodemon --watch parcel.ts parcel.ts dev",
"parcel-prod": "ts-node parcel.ts prod",
"deploy": "npm run parcel-prod && yes | gcloud --configuration talmud-page app deploy",
"start": "node ./express_main.js",
"gcp-build": "tsc --lib es2022,dom --downlevelIteration express_main.ts",
"ignore trailing commas": "exit 1"
},
"devDependencies": {
"@types/argparse": "^2.0.10",
"@types/chalk": "^2.2.0",
"@types/dompurify": "^3.0.5",
"@types/express": "^4.17.9",
"@types/gapi": "0.0.39",
"@types/gapi.auth2": "0.0.52",
"@types/gapi.client.docs": "^1.0.0",
"@types/gapi.client.drive": "^3.0.13",
"@types/gtag.js": "0.0.3",
"@types/jest": "^26.0.16",
"@types/jquery": "^3.5.4",
"@types/jsdom": "^21.1.6",
"@types/json-stable-stringify": "^1.0.32",
"@types/levenshtein-edit-distance": "^3.0.2",
"@types/luxon": "^2.0.8",
"@types/make-fetch-happen": "^8.0.0",
"@types/mousetrap": "^1.6.9",
"@types/node": "^14.14.10",
"@types/nunjucks": "^3.1.3",
"@types/parcel-bundler": "^1.12.1",
"@types/react": "^17.0.75",
"@types/react-dom": "^18.0.10",
"@types/react-swipeable-views": "^0.13.1",
"@types/react-swipeable-views-utils": "^0.13.4",
"@types/showdown": "^2.0.6",
"@types/underscore": "^1.11.4",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"argparse": "^2.0.1",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^7.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-plugin-unicorn": "^26.0.1",
"jest": "^26.0.1",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/__tests__/api_request_handler_base.ts",
"<rootDir>/__tests__/api_request_handler_runner.ts",
"<rootDir>/__tests__/api_request_handler_tester.ts",
"<rootDir>/__tests__/api_request_handler_tests_generator.ts",
"<rootDir>/node_modules/"
],
"setupFiles": [
"./jest_start.js"
],
"watchPathIgnorePatterns": [
"<rootDir>/dist/"
]
},
"ignore trailing commas": "hello, world"
}