forked from mParticle/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "docs-site",
"description": "mParticle documentation page",
"version": "1.0.0",
"dependencies": {
"@mparticle/gatsby-plugin-mparticle": "^1.0.3",
"@reach/router": "^1.3.4",
"aws-sdk": "^2.704.0",
"classnames": "^2.2.6",
"core-js": "^3.6.5",
"front-matter": "4.0.2",
"gatsby": "^2.23.11",
"gatsby-cli": "^2.12.51",
"gatsby-plugin-algolia": "^0.26.0",
"gatsby-plugin-less": "^3.2.6",
"gatsby-plugin-robots-txt": "^1.5.1",
"gatsby-plugin-sharp": "^2.6.14",
"gatsby-plugin-sitemap": "^2.4.7",
"gatsby-remark-a11y-emoji": "^1.1.0",
"gatsby-remark-autolink-headers": "^2.3.7",
"gatsby-remark-prismjs": "^3.5.10",
"gatsby-remark-smartypants": "^2.3.6",
"gatsby-source-filesystem": "^2.3.14",
"gatsby-transformer-javascript-frontmatter": "^2.3.7",
"gatsby-transformer-remark": "^2.8.28",
"highlight.js": "10.1.1",
"less": "^3.11.3",
"less-loader": "^6.1.3",
"loader-utils": "2.0.0",
"lodash": "^4.17.19",
"markdown-it": "^11.0.0",
"markdown-it-anchor": "^5.3.0",
"markdown-it-container": "^3.0.0",
"markdown-it-decorate": "^1.2.2",
"markdown-it-replace-link": "^1.1.0",
"object-assign": "4.1.1",
"path": "0.12.7",
"prismjs": "^1.21.0",
"promise-polyfill": "^8.1.3",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-document-title": "^2.0.3",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-responsive": "^8.1.0",
"react-scroll": "^1.8.2",
"react-transition-group": "^4.4.1",
"strip-markdown": "^3.1.2",
"unist-util-visit": "^2.0.2",
"uuid": "^8.2.0",
"whatwg-fetch": "3.0.0"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/react": "^5.3.19",
"axios": "^0.19.2",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"concurrently": "^5.2.0",
"cypress": "^4.9.0",
"eslint": "7.3.1",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "7.20.2",
"file-loader": "^6.0.0",
"fs-extra": "9.0.1",
"json-loader": "^0.5.7",
"start-server-and-test": "^1.11.0"
},
"main": "n/a",
"scripts": {
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:test": "wait-on http://localhost:6006 && npm run test:e2e:ci",
"test": "concurrently 'npm run storybook -- --ci' 'npm run cy:test' -k -s first",
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open",
"test:e2e:ci": "start-server-and-test develop http://localhost:8000 cy:run",
"develop": "npm run update-partners && gatsby develop",
"clean": "gatsby clean",
"serve": "gatsby serve",
"update-partners": "node scripts/updatePartners",
"build": "npm run lint && npm run update-partners && ACTIVE_ENV=development gatsby build --prefix-paths",
"github:comment": "node scripts/githubComments",
"production-build": "npm run lint && npm run update-partners && ACTIVE_ENV=production gatsby build",
"lint": "eslint src/components/**/*.jsx src/pages/**/*.jsx src/utils/*.js",
"storybook": "start-storybook -p 6006 -s ./static",
"build-storybook": "build-storybook"
}
}