-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.97 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
{
"name": "gp-gatsby-starter-ts-sass-jest",
"description": "GP Gatsby Starter",
"version": "0.0.1",
"author": "GP",
"dependencies": {
"@sentry/browser": "^7.73.0",
"@types/jest": "^29.5.5",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.10",
"@types/react-helmet": "^6.1.7",
"@use-it/interval": "^1.0.0",
"gatsby": "^5.12.5",
"gatsby-plugin-google-tagmanager": "^5.12.0",
"gatsby-plugin-image": "^3.12.0",
"gatsby-plugin-manifest": "^5.12.0",
"gatsby-plugin-polyfill-io": "^1.1.0",
"gatsby-plugin-react-helmet": "^6.12.0",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-robots-txt": "1.8.0",
"gatsby-plugin-sass": "^6.12.0",
"gatsby-plugin-sentry": "^1.0.1",
"gatsby-plugin-sharp": "^5.12.0",
"gatsby-source-filesystem": "^5.12.0",
"gatsby-transformer-remark": "^6.12.0",
"gatsby-transformer-sharp": "^5.12.0",
"html-react-parser": "^4.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-hook-inview": "^4.5.0",
"react-uid": "^2.3.3",
"sass": "^1.68.0"
},
"devDependencies": {
"@goodpraxis/danger-js": "^0.6.2",
"@testing-library/cypress": "^9.0.0",
"@types/react-test-renderer": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"axe-core": "^4.8.2",
"babel-jest": "^29.4.3",
"babel-preset-gatsby": "^3.7.0",
"cypress": "^12.7.0",
"cypress-axe": "^1.4.0",
"danger": "^11.3.0",
"eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"junit-merge": "^2.0.0",
"npm-run-all": "^4.1.5",
"react-test-renderer": "^18.2.0",
"start-server-and-test": "^2.0.1",
"stylelint": "^15.10.3",
"stylelint-config-sass-guidelines": "^10.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"cy:open": "cypress open",
"cy:run": "cypress run",
"lint:js": "eslint --ext .js,.ts,.jsx,.tsx src/",
"lint:css": "stylelint \"**/*.scss\"",
"lint": "run-p lint:js lint:css",
"test:clean": "rm -r results",
"test:e2e:ci": "start-server-and-test develop http://localhost:8000 cy:run",
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open",
"test:merge": "npx junit-merge -d results -o merged-junit.xml",
"test:snapshots:unit": "jest -u",
"test:unit": "JEST_JUNIT_OUTPUT_DIR=results jest --ci --reporters=default --reporters=jest-junit --coverage",
"test": "run-s test:unit test:merge test:clean"
}
}