-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
83 lines (83 loc) · 2.56 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
{
"name": "gatsby-starter-default",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "0.1.1",
"author": "Jim Lynch <[email protected]>",
"scripts": {
"build": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"tslint": "tslint \"src/**/*.ts[x]\" --fix",
"lint": "npm run format && npm run tslint",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "jest --watch",
"test-once": "jest --coverage",
"mut": "stryker run",
"e2e": "node_modules/.bin/cypress open",
"e2e-headless": "node_modules/.bin/cypress run",
"deploy-gh_manual": "git push origin :gh-pages && git subtree push --prefix public/ origin gh-pages",
"deploy-gh": "gh-pages -d public",
"deploy-s3": "gatsby-plugin-s3 deploy --yes"
},
"dependencies": {
"@types/jest": "^24.0.24",
"@types/react-helmet": "^5.0.14",
"@types/react-redux": "^7.1.5",
"@types/react-test-renderer": "^16.9.1",
"@types/redux-mock-store": "^1.0.1",
"gatsby": "^2.18.12",
"gatsby-image": "^2.2.34",
"gatsby-plugin-manifest": "^2.2.31",
"gatsby-plugin-offline": "^3.0.27",
"gatsby-plugin-react-helmet": "^3.1.16",
"gatsby-plugin-react-redux": "^1.1.0-0",
"gatsby-plugin-sharp": "^2.3.5",
"gatsby-plugin-typescript": "^2.1.23",
"gatsby-source-filesystem": "^2.1.40",
"gatsby-transformer-sharp": "^2.3.7",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-redux": "^7.1.3",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-localstorage-simple": "^2.1.6"
},
"devDependencies": {
"babel-jest": "^24.9.0",
"babel-preset-gatsby": "^0.2.26",
"cypress": "^3.8.0",
"cypress-cucumber-preprocessor": "^1.19.0",
"gh-pages": "^2.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"react-test-renderer": "^16.12.0",
"redux-mock-store": "^1.5.4",
"serverless-offline": "^5.12.1",
"stryker": "^0.35.1",
"stryker-api": "^0.24.1",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"typescript": "^3.7.3",
"wait-on": "^3.3.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"env": {
"cypress/globals": true
}
}