-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.62 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.62 KB
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
{
"name": "gatsby-starter-default",
"private": true,
"description": "A Gatsby Starter complete with testing, linting, and Storybook",
"version": "0.1.0",
"author": "Daniel Lemay <daniel@dslemay.com>",
"keywords": [
"gatsby",
"testing",
"storybook"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier src/**/*.{js,jsx,md}",
"prettier": "is-ci prettier:check prettier:format",
"prettier:check": "prettier --check src/**/*.{js,jsx,md}",
"prettier:format": "prettier --write src/**/*.{js,jsx,md}",
"lint": "eslint src cypress",
"lint-staged": "lint-staged",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "is-ci test:coverage test:watch",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "is-ci e2e:headless e2e:open",
"e2e:open": "start-server-and-test develop http-get://localhost:8000 cy:open",
"e2e:headless": "start-server-and-test develop http-get://localhost:8000 cy:run",
"cy:open": "cypress open",
"cy:run": "cypress run",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"gatsby": "^2.2.2",
"gatsby-image": "^2.0.31",
"gatsby-plugin-manifest": "^2.0.22",
"gatsby-plugin-offline": "^2.0.24",
"gatsby-theme-dslemay-core": "^0.2.0",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-helmet": "^5.2.0",
"react-twitter-embed": "^2.0.8"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@storybook/addon-actions": "^5.0.5",
"@storybook/addon-knobs": "^5.0.5",
"@storybook/addon-links": "^5.0.5",
"@storybook/addon-viewport": "^5.0.5",
"@storybook/addons": "^5.0.5",
"@storybook/react": "^5.0.5",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.4.0",
"babel-loader": "^8.0.5",
"babel-preset-gatsby": "^0.1.9",
"cypress": "^3.1.5",
"cypress-testing-library": "^2.3.6",
"eslint": "^5.15.1",
"eslint-config-dslemay": "^1.1.0",
"eslint-plugin-cypress": "^2.2.1",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"identity-obj-proxy": "^3.0.0",
"is-ci-cli": "^1.1.1",
"jest": "^24.4.0",
"jest-dom": "^3.1.2",
"jest-watch-typeahead": "^0.2.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"react-testing-library": "^6.0.0",
"start-server-and-test": "^1.7.11"
}
}