-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.26 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
{
"name": "gatsby-starter",
"description": "Opinionated Gatsby starter",
"version": "1.0.0",
"license": "MIT",
"keywords": [
"gatsby",
"starter",
"react",
"typescript",
"gatsby-starter"
],
"repository": {
"type": "git",
"url": "https://github.com/Edwinny/gatsby-starter-typescript-minimal"
},
"scripts": {
"dev": "eslint --fix src/**/*.{tsx,ts} && gatsby develop",
"build": "gatsby build",
"start": "gatsby serve --port 3000",
"clean": "rimraf .cache public",
"lint": "eslint --fix src/**/*.{tsx,ts}"
},
"stylelint": {
"processors": [
"stylelint-processor-styled-components"
],
"extends": [
"stylelint-config-recommended",
"stylelint-config-styled-components"
]
},
"dependencies": {
"babel-plugin-styled-components": "^1.10.7",
"gatsby": "2.21.5",
"gatsby-image": "2.4.0",
"gatsby-plugin-config": "1.0.7",
"gatsby-plugin-layout": "^1.2.3",
"gatsby-plugin-manifest": "2.4.1",
"gatsby-plugin-offline": "^3.1.4",
"gatsby-plugin-react-helmet": "3.3.0",
"gatsby-plugin-react-svg": "3.0.0",
"gatsby-plugin-sharp": "2.6.0",
"gatsby-plugin-styled-components": "3.3.0",
"gatsby-plugin-typescript": "2.4.0",
"gatsby-transformer-sharp": "2.5.0",
"polished": "3.5.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "6.0.0",
"react-is": "^16.13.1",
"react-scroll": "^1.7.16",
"react-typical": "^0.1.3",
"styled-components": "^5.1.0"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@types/node": "13.13.4",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.7",
"@types/react-helmet": "5.0.15",
"@types/react-scroll": "^1.5.4",
"@types/styled-components": "5.1.0",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"prettier": "^2.0.4",
"rimraf": "3.0.2",
"stylelint": "13.3.3",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"typescript": "3.8.3"
}
}