This repository was archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.11 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.11 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
{
"name": "gatsby-starter-default-typescript",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "0.1.0",
"author": "Jack Hillman <jack@atomix.com.au>",
"dependencies": {
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^10.0.4",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^25.2.1",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/styled-components": "^5.1.0",
"babel-jest": "^26.0.1",
"babel-preset-gatsby": "^0.4.1",
"gatsby": "^2.21.13",
"gatsby-image": "^2.4.1",
"gatsby-plugin-manifest": "^2.4.2",
"gatsby-plugin-offline": "^3.2.1",
"gatsby-plugin-react-helmet": "^3.3.1",
"gatsby-plugin-sharp": "^2.6.1",
"gatsby-source-filesystem": "^2.3.1",
"gatsby-transformer-sharp": "^2.5.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.0.0",
"react-test-renderer": "^16.13.1",
"styled-components": "^5.1.0",
"ts-node": "^8.10.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.8.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "ts-node ./node_modules/.bin/gatsby build",
"develop": "ts-node ./node_modules/.bin/gatsby develop",
"start": "npm run develop",
"serve": "ts-node ./node_modules/.bin/gatsby serve",
"clean": "ts-node ./node_modules/.bin/gatsby clean",
"test": "jest",
"lint": "eslint ./src/**/*.tsx ./src/**/*.ts",
"fix": "npm run lint --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"babel-plugin-styled-components": "^1.10.7",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"gatsby-plugin-styled-components": "^3.3.1",
"jest-enzyme": "^7.1.2",
"tslint-react": "^5.0.0"
}
}