-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 3.51 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
{
"name": "egghead",
"version": "1.0.4",
"main": "index.js",
"author": "cfeenstra67 <cameron.l.feenstra@gmail.com>",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist",
"check-types": "tsc --noEmit",
"prebuild": "npm run clean && npm run check-types",
"build": "webpack --config-name chrome && webpack --config-name firefox && webpack --config-name firefox-mv2 && webpack --config-name demo && zip -rj dist/chrome.zip dist/chrome && zip -rj dist/firefox.zip dist/firefox && zip -rj dist/firefox-mv2.zip dist/firefox-mv2",
"serve": "webpack serve --config-name dev --no-client-overlay",
"serve-demo": "webpack serve --config-name demo --no-client-overlay",
"typeorm": "typeorm-ts-node-commonjs",
"ohm-generate": "npx ohm generateBundles --esm --withTypes src/**/*.ohm",
"fmt": "eslint --fix 'src/**/*.{ts,tsx}' 'infra/**/*.ts'",
"test": "jest"
},
"dependencies": {
"@jlongster/sql.js": "^1.6.7",
"@ungap/event-target": "^0.2.3",
"absurd-sql": "^0.0.53",
"animate.css": "^4.1.1",
"chart.js": "^3.7.1",
"css-loader": "^6.7.1",
"highlight.js": "^11.5.1",
"pino": "^8.4.1",
"queue": "^6.0.2",
"react": "^18.1.0",
"react-chartjs-2": "^4.1.0",
"react-dom": "^18.1.0",
"react-intersection-observer": "^9.1.0",
"react-simple-code-editor": "^0.11.2",
"react-transition-group": "^4.4.2",
"reflect-metadata": "^0.1.13",
"style-loader": "^3.3.1",
"typeorm": "https://github.com/cfeenstra67/typeorm/releases/download/0.3.7/package.tar.gz",
"uuid": "^8.3.2",
"wa-sqlite": "cfeenstra67/wa-sqlite#buildless",
"wouter": "^2.8.0-alpha.2"
},
"devDependencies": {
"@ohm-js/cli": "^1.1.0",
"@pulumi/aws": "^5.10.0",
"@pulumi/awsx": "^0.40.0",
"@pulumi/pulumi": "^3.35.3",
"@svgr/webpack": "^6.2.1",
"@types/chrome": "^0.0.183",
"@types/jest": "^28.1.5",
"@types/lodash": "^4.14.182",
"@types/mime-types": "^2.1.1",
"@types/node": "^17.0.31",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@types/react-transition-group": "^4.4.4",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"better-sqlite3": "^9.2.2",
"copy-webpack-plugin": "^10.2.4",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-unused-imports": "^2.0.0",
"events": "^3.3.0",
"http-server": "^14.1.0",
"jest": "^28.1.3",
"jest-text-transformer": "^1.0.4",
"lodash": "^4.17.21",
"merge-jsons-webpack-plugin": "^2.0.1",
"mime-types": "^2.1.35",
"mini-css-extract-plugin": "^2.6.0",
"ohm-js": "^16.3.4",
"prettier": "^2.6.2",
"sphinx-material": "git+https://github.com/bashtage/sphinx-material.git",
"ts-jest": "^28.0.6",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"url-loader": "^4.1.1",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"pnpm": {
"patchedDependencies": {
"lodash@4.17.21": "patches/lodash@4.17.21.patch"
},
"overrides": {
"loader-utils": ">=2.0.3",
"@babel/traverse": ">=7.23.2",
"postcss": ">=8.4.31",
"json5": ">=2.2.2",
"xml2js": ">=0.5.0"
}
}
}