-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
91 lines (91 loc) · 2.8 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
{
"name": "gatsby-gojob-starter",
"description": "An opionionated starter to get up and developing effienctly with Gatsby",
"version": "1.0.0",
"author": "Gojob",
"scripts": {
"clean": "rimraf .cache public",
"start": "gatsby develop",
"build": "gatsby build",
"tsc": "./node_modules/.bin/tsc",
"tsc:all": "tsc -p . && tsc -p cypress",
"serve": "gatsby serve",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write src/**/*.{ts,tsx}",
"test": "jest",
"test:watch": "yarn test --watch",
"cy:open": "cypress open",
"cy:run": "cypress run",
"e2e": "start-server-and-test start http://localhost:8000 cy:open",
"e2e:ci": "start-server-and-test start http://localhost:8000 cy:run"
},
"dependencies": {
"@material-ui/core": "^4.9.8",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.9.6",
"gatsby": "^2.20.12",
"gatsby-image": "^2.3.1",
"gatsby-plugin-manifest": "^2.3.3",
"gatsby-plugin-material-ui": "^2.1.6",
"gatsby-plugin-offline": "^3.1.2",
"gatsby-plugin-prefetch-google-fonts": "^1.4.3",
"gatsby-plugin-react-helmet": "^3.2.1",
"gatsby-plugin-sharp": "^2.5.3",
"gatsby-plugin-typescript": "^2.3.1",
"gatsby-source-filesystem": "^2.2.2",
"gatsby-transformer-sharp": "^2.4.3",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@cypress/browserify-preprocessor": "^2.1.4",
"@testing-library/cypress": "^6.0.0",
"@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^10.0.2",
"@types/jest": "^25.1.5",
"@types/node": "^12.6.8",
"@types/react-helmet": "^5.0.15",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"babel-jest": "^25.2.6",
"babel-preset-gatsby": "^0.3.1",
"browserify": "^16.5.1",
"core-js": "2",
"cypress": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"gatsby-plugin-webpack-bundle-analyzer": "^1.0.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.2.7",
"prettier": "^2.0.2",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"start-server-and-test": "^1.10.11",
"trim-right": "^1.0.1",
"tsify": "^4.0.1",
"typescript": "^3.8.3"
},
"keywords": [
"gatsby",
"boilerplate",
"gojob",
"typescript",
"jest",
"cypress"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gojob-1337/gatsby-gojob-starter"
},
"bugs": {
"url": "https://github.com/gojob-1337/gatsby-gojob-starter/issues"
}
}