-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.2 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
{
"name": "warehouse-return-screens",
"private": true,
"description": "A quick sample of warehouse return screens using Gatsby",
"version": "0.1.0",
"author": "Doug Robinson <33792770+b-douglas@users.noreply.github.com",
"dependencies": {
"bootstrap": "^5.0.0",
"gatsby": "^4.25.9",
"gatsby-cli": "^5.14.0",
"gatsby-image": "^3.11.0",
"gatsby-link": "^2.3.4",
"gatsby-plugin-catch-links": "^5.13.1",
"gatsby-plugin-google-analytics": "^4.25.0",
"gatsby-plugin-manifest": "^5.14.0",
"gatsby-plugin-offline": "^5.25.0",
"gatsby-plugin-react-helmet": "^6.13.1",
"gatsby-plugin-sass": "^6.13.1",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-plugin-sitemap": "^6.13.1",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-sharp": "^5.13.1",
"node-sass": "^9.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-bootstrap": "^2.10.2",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"animate.css": "^4.1.1",
"babel-eslint": "^10.1.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.4",
"font-awesome": "^4.7.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"modern-normalize": "^3.0.1",
"prettier": "^3.3.3",
"prismjs": "^1.27.0",
"textlint": "^14.2.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"lint:text": "textlint src/pages/**/index.md",
"lint:textfix": "textlint --fix src/pages/**/index.md",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"deploy": "gatsby build --prefix-paths && gh-pages -d public -b gh-pages"
},
"repository": {
"type": "git",
"url": "git@github.com:b-douglas/warehouse-return-screens.git"
},
"bugs": {
"url": "https://github.com/b-douglas/warehouse-return-screens/issues"
}
}