-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2 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
{
"name": "gatsby-starter-styled-ts",
"private": true,
"version": "1.0.0",
"author": "Diego Costa <[email protected]>",
"dependencies": {
"gatsby": "^5.11.0",
"gatsby-plugin-styled-components": "^6.11.0",
"gatsby-plugin-typescript": "5.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.0.7"
},
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "^14.0.0",
"@types/node": "^20.4.10",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "6.3.0",
"@typescript-eslint/parser": "6.3.0",
"babel-eslint": "^10.1.0",
"babel-jest": "29.6.2",
"babel-plugin-styled-components": "^2.1.4",
"babel-preset-gatsby": "3.11.0",
"eslint": "8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "7.33.1",
"husky": "8.0.3",
"jest": "29.6.2",
"jest-environment-jsdom": "29.6.2",
"jest-styled-components": "7.1.1",
"lint-staged": "^13.2.3",
"postcss-jsx": "^0.36.4",
"postcss-syntax": "^0.36.2",
"prettier": "3.0.1",
"react-test-renderer": "^18.2.0",
"stylelint": "^15.10.2",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^5.1.6"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"prettier": "prettier --write .",
"serve": "gatsby serve",
"clean": "gatsby clean",
"restart": "yarn clean && yarn start",
"test": "jest",
"eslint": "eslint . --fix",
"stylelint": "stylelint src",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"yarn eslint",
"yarn stylelint",
"yarn prettier"
]
}
}