-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (101 loc) · 2.99 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
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "gatsby-starter-ts",
"description": "A TypeScript starter for Gatsby that includes all you need to build amazing projects",
"version": "1.0.0",
"private": true,
"author": {
"name": "João Pedro Schmitz",
"email": "oi@joaopedro.cc",
"url": "joaopedro.cc"
},
"license": "MIT",
"keywords": [
"gatsby",
"starter",
"typescript"
],
"scripts": {
"start": "gatsby develop",
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"storybook": "NODE_ENV=production start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"yarn lint --fix",
"yarn format"
]
},
"dependencies": {
"@storybook/react": "^6.0.12",
"axios": "^0.20.0",
"babel-plugin-root-import": "^6.5.0",
"babel-plugin-styled-components": "^1.11.1",
"bootstrap": "^4.5.2",
"gatsby": "^2.22.5",
"gatsby-plugin-layout": "^1.3.10",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-schema-snapshot": "^1.0.0",
"gatsby-plugin-styled-components": "^3.3.10",
"gatsby-source-strapi": "^0.0.12",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-markdown": "^4.3.1",
"recharts": "^1.8.5",
"styled-components": "^5.1.1",
"tsconfig-paths-webpack-plugin": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@storybook/addon-actions": "^6.0.12",
"@storybook/addon-essentials": "^6.0.12",
"@storybook/addon-links": "^6.0.12",
"@types/node": "^13.11.0",
"@types/react": "^16.9.32",
"@types/react-bootstrap": "^0.32.22",
"@types/react-dom": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"commitizen": "^4.0.4",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-root-import": "^1.0.4",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.3",
"lint-staged": "^10.1.2",
"prettier": "^2.0.4",
"react-is": "^16.13.1",
"transparent-commitizen": "^0.5.1",
"typescript": "^3.8.3"
},
"config": {
"commitizen": {
"path": "./.commitconfig/"
}
},
"readme": "ERROR: No README data found!",
"_id": "gatsby-starter-ts@1.0.0"
}