forked from LekoArts/gatsby-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.43 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
{
"private": true,
"name": "@lekoarts/gatsby-themes",
"description": "My open-source collection of 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.0.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@types/chroma-js": "^1.4.3",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.8",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-helmet": "^5.0.14",
"@types/testing-library__cypress": "^5.0.1",
"@types/theme-ui": "^0.2.4",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"concurrently": "^5.0.0",
"cross-env": "^6.0.3",
"cypress": "3.6.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.6.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"gatsby-cypress": "^0.2.16",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-junit": "^9.0.0",
"lerna": "^3.18.4",
"lint-staged": "^9.4.3",
"plop": "^2.5.3",
"prettier": "^1.19.1",
"start-server-and-test": "^1.10.6",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
}
}