forked from LekoArts/gatsby-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·82 lines (82 loc) · 2.89 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
{
"private": true,
"name": "@lekoarts/gatsby-themes",
"description": "My open-source collection of free Gatsby themes",
"author": "LekoArts <[email protected]>",
"workspaces": [
"themes/*",
"examples/*"
],
"scripts": {
"tsc": "tsc",
"type-check": "tsc --noEmit",
"tsc:compile": "tsc --project cypress/tsconfig.json",
"tsc:compile:watch": "tsc --watch --project cypress/tsconfig.json",
"lint": "eslint . --ignore-path .gitignore --ignore-path .prettierignore --ext .ts,.tsx,.js",
"lint:fix": "yarn lint --fix",
"lint:ci": "yarn lint --format junit -o results/eslint/result.xml",
"format": "prettier \"**/*.{md,mdx,json,yaml}\" --write",
"test": "jest",
"test:coverage": "jest --coverage",
"test:update": "jest --updateSnapshot",
"test:watch": "jest --watch",
"test:ci": "jest --ci --runInBand",
"plop": "plop",
"cy:run": "cross-env CYPRESS_baseUrl=http://localhost:9000 cypress run --browser chrome --reporter junit --reporter-options 'mochaFile=results/cypress/result.xml'",
"cy:open": "cypress open",
"start-server-and-test": "start-server-and-test",
"concurrently": "concurrently",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.1",
"@changesets/cli": "^2.17.0",
"@testing-library/cypress": "^8.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/chroma-js": "^2.1.3",
"@types/jest": "^27.0.1",
"@types/loadable__component": "^5.13.4",
"@types/node": "^15.6.1",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.2",
"@types/styled-system": "^5.1.13",
"@types/styled-system__css": "^5.0.16",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"cypress": "^8.3.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"fs-extra": "^10.0.0",
"gatsby-cypress": "^1.13.0",
"glob": "^7.1.7",
"husky": "^7.0.2",
"jest": "^27.1.0",
"jest-junit": "^12.2.0",
"lint-staged": "^11.1.2",
"plop": "^2.7.4",
"prettier": "^2.3.2",
"start-server-and-test": "^1.13.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"resolutions": {
"@testing-library/dom": "https://pkg.csb.dev/testing-library/dom-testing-library/commit/771c1901/@testing-library/dom",
"cypress": "^8.3.1",
"@emotion/react": "^11.4.1",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22"
}
}