-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
74 lines (74 loc) · 1.98 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
{
"name": "seattle-js",
"version": "3.3.96",
"description": "An evergreen website for the SeattleJS meetup and community",
"engines": {
"node": ">=16.19.0"
},
"dependencies": {
"@architect/functions": "latest",
"@aws-sdk/client-apigatewaymanagementapi": "^3.382.0",
"@aws-sdk/client-dynamodb": "^3.382.0",
"@aws-sdk/client-s3": "^3.383.0",
"@aws-sdk/client-sns": "^3.382.0",
"@aws-sdk/client-sqs": "^3.382.0",
"@aws-sdk/client-ssm": "^3.382.0",
"@aws-sdk/lib-dynamodb": "^3.382.0",
"@begin/data": "^4.0.2",
"@enhance/arc-plugin-enhance": "^11.0.4",
"@liveblocks/client": "^1.1.8",
"esbuild": "^0.18.17",
"front-matter": "^4.0.2",
"marked": "^4.0.12",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@begin/deploy": "^0.22.4",
"aws-sdk": "^2.1429.0",
"dotenv": "^16.3.1",
"eslint": "latest",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.3"
},
"eslintConfig": {
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"prettier"
],
"ignorePatterns": [
"public/scripts/*",
"src/*"
],
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false,
"babelOptions": {
"plugins": [
"@babel/plugin-syntax-import-assertions"
]
},
"sourceType": "module",
"ecmaVersion": 2022
}
},
"scripts": {
"start": "begin dev",
"lint": "eslint ./app/**/*.mjs --fix && prettier \"**/*.mjs\" --write",
"build": "esbuild src/app.js --bundle --outfile=public/scripts/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seattlejs/seattlejs.com.git"
},
"author": "Carter Rabasa",
"license": "MIT",
"bugs": {
"url": "https://github.com/seattlejs/seattlejs.com/issues"
},
"homepage": "https://github.com/seattlejs/seattlejs.com#readme"
}