-
Notifications
You must be signed in to change notification settings - Fork 405
/
package.json
111 lines (111 loc) · 4.05 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
103
104
105
106
107
108
109
110
111
{
"private": true,
"workspaces": [
"themes/amaranth",
"themes/advanced",
"examples/amaranth-demo",
"examples/advanced-demo"
],
"name": "gatsby-starter-advanced",
"description": "GatsbyJS starter that includes examples for advanced use cases.",
"version": "4.17.1",
"author": "Ruben Harutyunyan <vagr9k@gmail.com>",
"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 **/content/*.{md,mdx}"
},
"dependencies": {
"@stylelint/postcss-css-in-js": "^0.38.0",
"babel-plugin-styled-components": "^2.0.7",
"gatsby": "^4.17.1",
"gatsby-plugin-styled-components": "^5.17.0",
"gatsby-theme-amaranth": "*",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.39.1",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@testing-library/cypress": "^8.0.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"@types/react-helmet": "^6.1.5",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-jest": "^28.1.1",
"cypress": "^10.2.0",
"cypress-axe": "^1.0.0",
"eslint": "^8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.5.1",
"gatsby-cypress": "^2.17.0",
"gh-pages": "^4.0.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-styled-components": "^7.0.8",
"markdownlint-cli2": "^0.4.0",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"start-server-and-test": "^1.14.0",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^8.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-prettier": "^2.0.0",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"ts-prune": "^0.10.3",
"typescript": "^4.7.4",
"write-good": "^1.0.8"
},
"resolutions": {
"caniuse-lite": "1.0.30001359",
"postcss": "8.3.5"
},
"packageManager": "yarn@3.2.1"
}