-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 2.64 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
{
"name": "openousd",
"private": true,
"version": "0.1.0",
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.4.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@nivo/bar": "^0.74.0",
"@nivo/core": "^0.74.0",
"@nivo/line": "^0.74.0",
"@nivo/pie": "^0.74.0",
"@nivo/sankey": "^0.74.0",
"@nivo/tooltip": "^0.74.0",
"bootstrap": "^4.6.0",
"gatsby": "^3.14.0",
"gatsby-plugin-google-analytics": "^3.14.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-image": "^1.14.0",
"gatsby-plugin-intl": "^0.3.3",
"gatsby-plugin-manifest": "^3.14.0",
"gatsby-plugin-offline": "^4.14.0",
"gatsby-plugin-react-helmet": "^4.14.0",
"gatsby-plugin-sass": "^4.12.0",
"gatsby-plugin-sharp": "^3.14.0",
"gatsby-source-contentful": "^5.14.0",
"gatsby-source-filesystem": "^3.14.0",
"gatsby-transformer-json": "^3.14.0",
"gatsby-transformer-sharp": "^3.14.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-bootstrap": "^1.6.3",
"react-bootstrap-table-next": "^4.0.3",
"react-bootstrap-table2-paginator": "^2.1.0",
"react-bootstrap-table2-toolkit": "^2.1.3",
"react-dom": "^17.0.2",
"react-google-recaptcha-v3": "^1.9.8",
"react-helmet": "^5.2.1",
"react-scroll": "^1.8.4",
"sass": "^1.32.13",
"slugify": "^1.6.0"
},
"devDependencies": {
"@percy/cli": "^1.0.0-beta.57",
"gh-pages": "^2.2.0",
"prettier": "^1.19.1",
"resize-observer-polyfill": "^1.5.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop -H 0.0.0.0 -p 8000",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"deployStaging": "gatsby build && echo 'staging.openousd.org' > public/CNAME && gh-pages -d public",
"promoteStaging": "./scripts/promote_staging.sh",
"refreshData": "node scripts/build_json.js",
"percyStaging": "PERCY_TOKEN=$(grep PERCY_TOKEN .env.production | cut -d '=' -f2) PERCY_BRANCH=main percy snapshot --base-url=https://staging.openousd.org scripts/testing/page-paths.json",
"percyProd": "PERCY_TOKEN=$(grep PERCY_TOKEN .env.production | cut -d '=' -f2) PERCY_BRANCH=main percy snapshot --base-url=https://openousd.org scripts/testing/page-paths.json"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"percy": {
"version": 2,
"snapshot": {
"widths": [
1280,
375
]
}
}
}