-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "@davidbarratt/drupal-edge",
"module": "./dist/worker.mjs",
"license": "GPL-3.0-or-later",
"scripts": {
"test": "eslint && tsc",
"dev": "wrangler dev --host davidwbarratt.com",
"build": "wrangler build",
"deploy": "wrangler publish"
},
"dependencies": {
"cookie": "^0.4.1",
"rxjs": "^6.6.3",
"tracking-query-params-registry": "github:mpchadwick/tracking-query-params-registry"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231010.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-dsv": "^2.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/cookie": "^0.4.1",
"@types/node": "^16.9.4",
"babel-loader": "^8.2.2",
"csv-loader": "^3.0.3",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.0.0",
"rollup": "^2.64.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.2.2",
"wrangler": "^3.13.1"
}
}