forked from barnardos/engineering-culture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.38 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
{
"name": "product-name",
"version": "1.0.0",
"description": "product-description",
"private": true,
"scripts": {
"check-format": "prettier '**/*.{css,json,js,md}' --list-different --ignore-path .gitignore",
"format": "prettier '**/*.{css,json,js,md}' --write --ignore-path .gitignore",
"lint:css": "stylelint '**/*.{css,js}' --max-warnings=0 --ignore-path .gitignore",
"lint:js": "eslint . --max-warnings 0 --ignore-path .gitignore ",
"lint": "npm-run-all --parallel lint:*",
"pretest": "npm-run-all --parallel lint check-format",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve"
},
"author": "Barnardo's",
"license": "MIT",
"devDependencies": {
"@barnardos/eslint-config-barnardos": "^0.2.0",
"@barnardos/stylelint-config-barnardos": "^0.5.3",
"eslint": "^5.16.0",
"gatsby": "^2.3.27",
"gatsby-plugin-compile-es6-packages": "^1.1.0",
"gatsby-plugin-postcss": "^2.0.7",
"npm-run-all": "^4.1.5",
"postcss-browser-reporter": "^0.6.0",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.5.0",
"postcss-reporter": "^6.0.1",
"prettier": "^1.16.4",
"stylelint": "^9.10.1"
},
"dependencies": {
"@barnardos/components": "^1.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0"
}
}