This repository has been archived by the owner on Sep 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 2.46 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
{
"version": "1.0.1",
"name": "@barnardos/components",
"description": "Components of the Barnardo's Design System",
"license": "MIT",
"repository": "https://github.com/barnardos/design-system.git",
"main": "src/components/index.js",
"files": [
"src/components",
"!*DS_Store"
],
"scripts": {
"lint:css": "stylelint '**/*.{css,js}' --max-warnings=0 --ignore-path .gitignore",
"lint:md": "remark . --quiet --frail --rc-path .remarklintrc.json --ignore-path .gitignore",
"lint:js": "eslint . --max-warnings 0 --ignore-path .gitignore ",
"lint": "npm-run-all --parallel lint:*",
"check-format": "prettier '**/*.{css,json,js,md}' --list-different --ignore-path .gitignore",
"format": "prettier '**/*.{css,json,js,md}' --write --ignore-path .gitignore",
"pretest": "npm-run-all --parallel lint check-format",
"run-e2e-tests": "cypress run --browser chrome",
"test:e2e": "CYPRESS_SUPPORT=y start-server-and-test http://localhost:8000 run-e2e-tests",
"test:unit": "jest --ci --runInBand",
"test": "npm-run-all --sequential test:*",
"watch-e2e-tests": "cypress open",
"watch-unit-tests": "jest --watch --onlyChanged",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve"
},
"devDependencies": {
"@barnardos/eslint-config-barnardos": "^0.3.0",
"@barnardos/stylelint-config-barnardos": "^0.5.3",
"axe-core": "^3.2.2",
"babel-jest": "^24.7.1",
"babel-preset-gatsby": "^0.1.11",
"core-js": "^2.6.5",
"cypress": "^3.2.0",
"cypress-axe": "^0.4.0",
"cypress-testing-library": "^2.4.0",
"eslint": "^5.16.0",
"gatsby": "^2.3.21",
"gatsby-cypress": "^0.1.7",
"gatsby-plugin-google-analytics": "^2.0.18",
"gatsby-plugin-postcss": "^2.0.7",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sitemap": "^2.0.12",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.7.1",
"jest-dom": "^3.1.3",
"npm-run-all": "^4.1.5",
"postcss-browser-reporter": "^0.6.0",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.6.0",
"postcss-reporter": "^6.0.1",
"prettier": "1.16.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0",
"react-testing-library": "^6.1.2",
"remark-cli": "^6.0.1",
"remark-preset-lint-itgalaxy": "^14.0.0",
"start-server-and-test": "^1.7.13",
"stylelint": "^9.10.1"
},
"dependencies": {
"@sindresorhus/slugify": "^0.9.1",
"url-polyfill": "^1.1.5"
}
}