-
Notifications
You must be signed in to change notification settings - Fork 178
/
package.json
102 lines (102 loc) · 3.71 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"private": true,
"workspaces": [
"themes/material",
"examples/material-demo"
],
"name": "gatsby-starter-material",
"description": "GatsbyJS starter that includes examples for advanced use cases.",
"version": "4.0.0",
"author": "Ruben Harutyunyan <[email protected]>",
"keywords": [
"gatsby",
"gatsby-starter",
"vagr9k"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"dev": "npm run develop",
"dev:network": "gatsby develop -H 0.0.0.0",
"serve": "gatsby serve",
"build": "gatsby build",
"build:gh": "npm run clean && npm run build && gh-pages -d public",
"clean": "rm -rf public && rm -rf .cache",
"lint:js": "eslint --ext .ts,.tsx,.js,.jsx .",
"lint:deadcode": "ts-prune -i '(test|gatsby)'",
"lint:styles": "stylelint src/**/*.{js,jsx,ts,tsx,css}",
"lint:md": "markdownlint-cli2 content/**/*.{md,mdx}",
"lint:format": "prettier --check '**/*.{js,jsx,ts,tsx,css}'",
"lint:all": "npm run lint:js && npm run lint:styles && npm run lint:format && npm run lint:md",
"format:js": "prettier '**/*.{js,jsx,ts,tsx}' --write",
"format:styles": "prettier '**/*.css' --write",
"format:all": "npm run format:js && npm run format:styles",
"test": "jest",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"cy:open:dev": "CYPRESS_STAGE=dev CYPRESS_BASE_URL=http://localhost:8000 cypress open",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e:dev": "CYPRESS_SUPPORT=y CYPRESS_BASE_URL=http://localhost:8000 CYPRESS_STAGE=dev start-server-and-test develop http://localhost:8000 cy:open",
"test:e2e": "CYPRESS_SUPPORT=y npm run build && start-server-and-test serve http://localhost:9000 cy:open",
"test:e2e:ci": "CYPRESS_SUPPORT=y npm run build && start-server-and-test serve http://localhost:9000 cy:run",
"write-good": "write-good $(glob 'content/**/*.md')"
},
"dependencies": {
"gatsby": "^4.0.0",
"gatsby-plugin-styled-components": "^5.0.0",
"gatsby-theme-material": "*",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.28.0"
},
"devDependencies": {
"@testing-library/cypress": "^8.0.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.4",
"@types/react": "^17.0.31",
"@types/react-dom": "^17.0.10",
"@types/react-helmet": "^6.1.4",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"babel-jest": "^27.3.1",
"cypress": "^8.6.0",
"cypress-axe": "^0.13.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.12.4",
"gatsby-cypress": "^2.0.0",
"gh-pages": "^3.2.3",
"jest": "^27.3.1",
"jest-styled-components": "^7.0.5",
"markdownlint-cli2": "^0.3.2",
"prettier": "^2.4.1",
"start-server-and-test": "^1.14.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^5.0.0",
"stylelint-prettier": "^1.2.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"ts-prune": "^0.10.1",
"typescript": "^4.4.4",
"write-good": "^1.0.8"
},
"resolutions": {
"postcss": "8.3.5"
},
"packageManager": "[email protected]"
}