forked from LekoArts/gatsby-themes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.57 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
{
"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",
"lerna": "lerna",
"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"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@testing-library/cypress": "^5.3.0",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.0",
"@types/chroma-js": "^1.4.3",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.26",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-helmet": "^5.0.15",
"@types/styled-system": "^5.1.6",
"@types/testing-library__cypress": "^5.0.3",
"@types/testing-library__jest-dom": "^5.0.1",
"@types/theme-ui": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"concurrently": "^5.1.0",
"cross-env": "^6.0.3",
"cypress": "^3.8.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"gatsby-cypress": "^0.2.22",
"husky": "^4.2.1",
"jest": "^24.9.0",
"jest-junit": "^10.0.0",
"lerna": "^3.20.2",
"lint-staged": "^10.0.7",
"plop": "^2.5.3",
"prettier": "^1.19.1",
"start-server-and-test": "^1.10.8",
"ts-jest": "^24.3.0",
"typescript": "^3.7.5"
},
"resolutions": {
"cypress": "^3.8.3"
}
}