-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.72 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
{
"name": "gp-gatsby-starter-ts-sass-jest",
"description": "GP Gatsby Starter",
"version": "0.0.1",
"author": "GP",
"dependencies": {
"@babel/helper-compilation-targets": "^7.20.0",
"@types/jest": "^27.5.0",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@types/react-helmet": "^6.1.6",
"@types/react-test-renderer": "^18.0.0",
"gatsby": "^3.15.0",
"gatsby-plugin-manifest": "^5.2.0",
"gatsby-plugin-react-helmet": "^4.15.0",
"gatsby-plugin-robots-txt": "^1.6.14",
"gatsby-plugin-sass": "^6.3.1",
"gatsby-source-filesystem": "^3.15.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"sass": "^1.56.2"
},
"devDependencies": {
"@goodpraxis/danger-js": "^0.6.2",
"@testing-library/cypress": "^8.0.7",
"@types/enzyme": "^3.10.12",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"axe-core": "^4.6.0",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^3.3.1",
"cypress": "^9.7.0",
"cypress-axe": "^0.14.0",
"danger": "^11.2.1",
"enzyme": "^3.11.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-junit": "^15.0.0",
"junit-merge": "^2.0.0",
"npm-run-all": "^4.1.5",
"react-test-renderer": "^17.0.2",
"start-server-and-test": "^1.15.2",
"stylelint": "^14.16.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-declaration-use-variable": "^1.7.3",
"ts-jest": "^26.5.6",
"typescript": "^4.9.4"
},
"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/ cypress/",
"lint:css": "stylelint \"src/**/*.scss\"",
"lint": "run-p lint:js lint:css",
"test:clean": "rm -rf 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:clean test:unit test:e2e:ci"
}
}