-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
143 lines (143 loc) · 5.49 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"dependencies": {
"@mantine/core": "4.2.1",
"@mantine/hooks": "4.2.1",
"@octokit/rest": "18.12.0",
"@supabase/supabase-js": "2.7.1",
"date-fns": "2.29.3",
"evergreen-ui": "7.1.3",
"glamor": "2.20.40",
"harmonics": "1.1.0",
"humanize-plus": "1.8.2",
"immutable": "4.0.0",
"jotai": "1.12.0",
"keymirror": "0.1.1",
"lodash": "4.17.21",
"opus-media-recorder": "0.8.0",
"posthog-js": "1.144.1",
"react": "18.1.0",
"react-beautiful-dnd": "13.1.0",
"react-dom": "18.1.0",
"react-hotkeys-hook": "4.0.6",
"react-markdown": "8.0.5",
"react-query": "3.39.2",
"react-router-dom": "6.8.0",
"react-scripts": "5.0.1",
"react-snowfall": "1.2.1",
"react-window": "1.8.8",
"rehype-autolink-headings": "6.1.1",
"rehype-slug": "5.0.1",
"remark-gfm": "3.0.1",
"rooks": "7.4.2",
"scribbletune": "5.0.0-alpha.2",
"slugify": "1.6.0",
"tone": "14.7.77",
"ui-box": "5.4.0",
"uuid": "8.3.2",
"web-vitals": "1.1.2"
},
"devDependencies": {
"@faker-js/faker": "7.6.0",
"@simbathesailor/use-what-changed": "2.0.0",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "12.8.3",
"@types/chalk": "2.2.0",
"@types/humanize-plus": "1.8.0",
"@types/jest": "26.0.24",
"@types/keymirror": "0.1.1",
"@types/lodash": "4.14.172",
"@types/node": "12.20.19",
"@types/pluralize": "0.0.29",
"@types/react": "17.0.18",
"@types/react-beautiful-dnd": "13.1.2",
"@types/react-dom": "18.0.1",
"@types/react-router-dom": "5.3.3",
"@types/react-window": "^1.8.5",
"@types/uuid": "8.3.1",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"chalk": "4.1.2",
"commitizen": "4.2.6",
"cz-conventional-changelog": "3.3.0",
"eslint-plugin-collation": "1.1.2",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"fishery": "2.2.2",
"husky": "7.0.4",
"jest-extended": "1.2.1",
"jest-matcher-utils": "29.3.1",
"lint-staged": "13.0.1",
"node-pg-migrate": "6.0.0",
"openapi-typescript": "4.4.0",
"pluralize": "8.0.0",
"prettier": "2.5.1",
"react-error-overlay": "6.0.9",
"semantic-release": "19.0.3",
"supabase": "1.37.1",
"ts-morph": "17.0.1",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"engines": {
"node": ">=19",
"npm": ">=9"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"lint-staged": {
"*.{ts,tsx,json,md}": "prettier --ignore-unknown --write",
"*.{ts,tsx}": "eslint --cache --fix"
},
"name": "beets",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/brandongregoryscott/beets.git"
},
"scripts": {
"build": "react-scripts build",
"build:migrations": "echo Building src/scripts/migrations && echo Using TypeScript && tsc -v && tsc --project src/scripts/migrations",
"clean:generated": "rm -rf src/generated",
"clean:migrations": "rm -rf src/scripts/migrations/dist",
"codegen": "source .env && REACT_APP_SUPABASE_URL=$REACT_APP_SUPABASE_URL REACT_APP_SUPABASE_ANON_KEY=$REACT_APP_SUPABASE_ANON_KEY ts-node src/scripts/codegen/main.ts",
"eject": "react-scripts eject",
"format:check": "prettier src --ignore-unknown --check",
"format:fix": "prettier src --ignore-unknown --write",
"lint": "eslint 'src/**/*.{ts,tsx}' --cache",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --cache --fix",
"migrations:create": "node-pg-migrate --migrations-dir src/scripts/migrations --template-file-name src/scripts/migrations/utils/migration-template.ts create",
"migrations:down": "node-pg-migrate --migrations-dir src/scripts/migrations/dist down",
"migrations:up": "node-pg-migrate --migrations-dir src/scripts/migrations/dist up",
"postcodegen": "npm run lint:fix && npm run format:fix",
"prebuild:migrations": "npm run clean:migrations",
"precodegen": "npm run clean:generated && npm run supabase:generate",
"premigrations:create": "npm run build:migrations",
"premigrations:down": "npm run build:migrations",
"premigrations:up": "npm run build:migrations",
"prepare": "husky install",
"semantic-release": "semantic-release",
"start": "GENERATE_SOURCEMAP=false react-scripts start",
"supabase": "./node_modules/supabase/bin/supabase",
"supabase:generate": "source .env && mkdir -p src/generated && touch src/generated/database.ts && ./node_modules/supabase/bin/supabase gen types typescript --project-id $SUPABASE_PROJECT_ID > src/generated/database.ts",
"test": "react-scripts test",
"test:watch": "react-scripts test --watch"
},
"version": "0.0.0-development"
}