-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.21 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
{
"name": "gatsby-starter-ts-hello-world",
"version": "1.0.0",
"description": "Typescript Starter with the bare essentials needed for a Gatsby site",
"scripts": {
"build": "rimraf public && npm run format && npm run lint && npm run type-check && gatsby build",
"check-format": "prettier --list-different \"src/**/*.{ts,tsx,css,html,json,md}\" ",
"create-types-for-css-modules": "tcm src -c",
"create-types-for-sass-modules": "tsm src --nameFormat camel",
"css-watch": "tcm src -c --watch",
"develop": "gatsby develop",
"eslint-init": "eslint --init",
"format": "prettier --write \"src/**/*.{ts,tsx,css,html,json,md}\" ",
"lint": "eslint ./ --ext .js,.ts,.tsx,.jsx --format visualstudio --no-color --max-warnings 10 --report-unused-disable-directives --ignore-pattern 'public/*' --ignore-pattern 'coverage/*' --ignore-pattern 'node_modules/*' ",
"sass-watch": "tsm src --nameFormat camel --watch",
"serve": "gatsby serve",
"start": "npm run develop",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \"",
"tsc-init": "tsc --init",
"type-check": "tsc",
"post": "node new-post.js"
},
"dependencies": {
"@mdx-js/mdx": "1.6.5",
"@mdx-js/react": "1.6.5",
"@types/react-helmet": "6.0.0",
"babel-plugin-styled-components": "1.10.7",
"gatsby": "2.15.12",
"gatsby-image": "2.4.6",
"gatsby-plugin-dark-mode": "1.1.2",
"gatsby-plugin-google-analytics": "2.3.3",
"gatsby-plugin-mdx": "1.2.14",
"gatsby-plugin-prefetch-google-fonts": "1.4.3",
"gatsby-plugin-react-helmet": "3.3.3",
"gatsby-plugin-sass": "2.1.14",
"gatsby-plugin-sharp": "2.6.10",
"gatsby-plugin-styled-components": "3.3.3",
"gatsby-plugin-typescript": "2.1.7",
"gatsby-remark-images": "3.3.9",
"gatsby-remark-responsive-iframe": "2.4.4",
"gatsby-source-filesystem": "2.3.10",
"gatsby-transformer-remark": "2.8.14",
"gatsby-transformer-sharp": "2.5.4",
"node-sass": "4.12.0",
"prism-react-renderer": "1.1.1",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-helmet": "6.0.0",
"react-icons": "3.10.0",
"styled-components": "5.1.1"
},
"devDependencies": {
"@types/mdx-js__react": "1.5.2",
"@types/node": "12.7.4",
"@types/node-sass": "4.11.0",
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"@types/styled-components": "5.1.0",
"@typescript-eslint/eslint-plugin": "2.2.0",
"@typescript-eslint/parser": "2.2.0",
"eslint": "6.3.0",
"eslint-config-prettier": "6.2.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.3",
"prettier": "1.18.2",
"rimraf": "3.0.0",
"stylelint": "10.1.0",
"stylelint-config-recommended": "2.2.0",
"typed-css-modules": "0.6.2",
"typed-scss-modules": "0.0.12",
"typescript": "3.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hdorgeval/gatsby-starter-ts-hello-world.git"
},
"author": "Henri d'Orgeval",
"license": "MIT",
"bugs": {
"url": "https://github.com/hdorgeval/gatsby-starter-ts-hello-world/issues"
},
"homepage": "https://github.com/hdorgeval/gatsby-starter-ts-hello-world#readme",
"engines": {
"vscode": "^1.18.0",
"node": ">=6.4.0"
}
}