-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
69 lines (69 loc) · 2.06 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
{
"name": "lodash.com",
"version": "0.1.0",
"private": false,
"description": "Lodash.com website and documentation",
"keywords": [
"lodash",
"docs",
"gatsby"
],
"bugs": {
"url": "https://github.com/lodash/lodash.com/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lodash/lodash.com"
},
"license": "MIT",
"author": "Jean-Philippe Sirois <jp@veksen.net>",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx}",
"serve": "gatsby serve",
"start": "npm run develop",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"dependencies": {
"@rehooks/window-scroll-position": "^1.0.1",
"babel-plugin-polished": "^1.1.0",
"babel-plugin-styled-components": "^1.10.2",
"gatsby": "^2.10.5",
"gatsby-image": "^2.2.3",
"gatsby-plugin-create-client-paths": "^2.1.1",
"gatsby-plugin-manifest": "^2.2.0",
"gatsby-plugin-offline": "^2.2.0",
"gatsby-plugin-polished": "^1.0.4",
"gatsby-plugin-react-helmet": "^3.1.0",
"gatsby-plugin-react-svg": "^2.1.1",
"gatsby-plugin-sharp": "^2.2.1",
"gatsby-plugin-styled-components": "^3.1.0",
"gatsby-plugin-tslint": "0.0.2",
"gatsby-plugin-typescript": "^2.1.0",
"gatsby-source-filesystem": "^2.1.1",
"gatsby-transformer-sharp": "^2.2.0",
"polished": "^3.4.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-highlight": "^0.12.0",
"react-markdown": "^4.1.0",
"react-perfect-scrollbar": "^1.5.3",
"react-virtualized": "^9.21.1",
"sharp": "^0.22.1",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@types/react-helmet": "^5.0.8",
"@types/react-highlight": "^0.12.1",
"@types/react-virtualized": "^9.21.2",
"@types/styled-components": "^4.1.16",
"prettier": "^1.18.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.5.2"
}
}