forked from Quigley-Brendan/Quiz-Tutorial-BQ2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.63 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.63 KB
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
{
"name": "examples",
"version": "1.0.0",
"main": "index.js",
"author": "The Gadget Team",
"license": "MIT",
"private": true,
"scripts": {
"lint": "yarn run lint:prettier && yarn run lint:eslint",
"lint:prettier": "node --max-old-space-size=4096 node_modules/.bin/prettier --check \"**/*.{js,ts,tsx}\"",
"lint:eslint": "node --max-old-space-size=4096 node_modules/.bin/eslint --quiet --ext ts,tsx .",
"lint:fix": "node --max-old-space-size=4096 node_modules/.bin/prettier --write --check \"**/*.{js,ts,tsx}\" && eslint --ext ts,tsx --fix .",
"typecheck": "yarn workspaces run tsc --noEmit",
"x": "esbuild-dev --watch=false"
},
"workspaces": [
"packages/apollo-blog",
"pacakges/billing-examples",
"packages/chakra-theme",
"packages/file-upload",
"packages/login-logout",
"packages/margin-calculator",
"packages/nextjs-shopify",
"packages/product-bundles",
"packages/product-recommendations-quiz-app/product-quiz-admin",
"packages/shopify-cli-embedded",
"packages/related-products",
"packages/simple-blog",
"packages/simple-form"
],
"dependencies": {
"@gadgetinc/eslint-config": "^0.4.0",
"@gadgetinc/prettier-config": "^0.3.0",
"eslint": "^7.15.0",
"jest": "^27.3.1",
"lodash": "^4.17.20",
"prettier": "^2.7.1",
"typescript": "^4.1.2"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/react": "^17.0.0",
"esbuild-dev": "^0.9.1"
},
"resolutions": {
"@gadgetinc/api-client-core": "0.10.1",
"@gadgetinc/react": "0.10.0",
"@types/react": "^17.0.38",
"next": "12.2.2",
"typescript": "4.7.4"
}
}