forked from open-sauced/hot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.15 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
{
"name": "@open-sauced/hot",
"description": "🍕The site that recommends the hottest sauce.",
"version": "1.19.1",
"private": true,
"license": "MIT",
"files": [
"build/**/*"
],
"bugs": "https://github.com/open-sauced/hot-sauce/issues",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/open-sauced/hot-sauce.git"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"scripts": {
"preinstall": "npx @open-sauced/check-engines",
"prestart": "npx @open-sauced/check-engines",
"push": "npx @open-sauced/conventional-commit",
"astro": "npx astro",
"start": "npm run astro -- dev",
"build": "npm run astro -- build",
"preview": "npm run astro -- preview",
"test": "npx jest --config ./.jest/jest.config.js",
"test:watch": "npm run test -- --watch",
"test:all": "npm run test -- --silent --watchAll=false",
"test:coverage": "npm run test:all -- --coverage",
"lint": "npx eslint . --report-unused-disable-directives",
"format": "npm run lint -- --fix"
},
"devDependencies": {
"@astronomer/eslint-config-astro": "^1.0.3",
"@open-sauced/check-engines": "^1.2.0",
"@open-sauced/conventional-commit": "^1.0.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"astro": "^0.22.18",
"babel-jest": "^27.4.6",
"babel-preset-react-app": "^10.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.7",
"jest-watch-typeahead": "^1.0.0",
"node-notifier": "^10.0.0",
"react-test-renderer": "^17.0.2",
"tailwindcss": "^3.0.16"
},
"dependencies": {
"@headlessui/react": "^1.4.3",
"@supabase/supabase-js": "^1.29.4",
"open-graph-scraper": "^4.11.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-tooltip": "^4.2.21"
}
}