This repository has been archived by the owner on Sep 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.02 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
{
"name": "chriss-personal-site",
"version": "1.0.0",
"description": "A Simple Personal Website",
"keywords": [
"personal",
"site"
],
"homepage": "https://github.com/ChrisW-B/PersonalWebsite#readme",
"bugs": {
"url": "https://github.com/ChrisW-B/PersonalWebsite/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChrisW-B/PersonalWebsite.git"
},
"license": "ISC",
"author": "Chris Barry <me@chrisb.xyz>",
"main": "build/index.js",
"scripts": {
"clean": "rm -rf ./build",
"lint:js": "eslint \"./src/**/*.{t,j}s{x,}\" --report-unused-disable-directives --ignore-pattern 'build/**/*.js'",
"lint:js:fix": "npm run lint:js -- --fix",
"prettier": "prettier --list-different './**/*.{ts,js,jsx,tsx,gql,html,yml,json}' --write",
"prettier:check": "prettier './**/*.{ts,js,jsx,tsx,gql,html,yml,json}' -c",
"start": "netlify dev",
"typescript": "tsc --noEmit"
},
"dependencies": {
"@apollo/server": "4.9.3",
"@as-integrations/aws-lambda": "3.1.0",
"graphql": "16.8.1",
"lastfm-njs": "1.0.0",
"masto": "6.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.7.2",
"@typescript-eslint/parser": "6.7.2",
"@typescript-eslint/typescript-estree": "6.7.2",
"eslint": "8.50.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-no-relative-import-paths": "1.5.2",
"eslint-plugin-prettier": "5.0.0",
"import-sort": "6.0.0",
"import-sort-parser-typescript": "6.0.0",
"import-sort-style-custom": "2.1.2",
"prettier": "3.0.3",
"prettier-eslint": "15.0.1",
"prettier-plugin-import-sort": "0.0.7",
"prettier-plugin-packagejson": "2.4.5",
"typescript": "5.2.2"
},
"importSort": {
".js, .jsx, .es6, .es": {
"parser": "babylon",
"style": "custom"
},
".ts, .tsx": {
"parser": "typescript",
"style": "custom"
}
}
}