-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.5 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
{
"version": "1.0.0",
"name": "luischodiman.me",
"description": "",
"main": "n/a",
"scripts": {
"start": "yarn run clean && gatsby develop",
"build": "yarn run clean && gatsby build",
"clean": "rimraf .cache public",
"lint:js": "eslint --cache --ext .js,.jsx .",
"lint:scss": "stylelint \"src/**/*.scss\"",
"lint": "concurrently \"yarn run lint:js\" \"yarn run lint:scss\"",
"test": "jest --config ./jest/jest-config.js",
"test:coverage": "jest --coverage --config ./jest/jest-config.js",
"test:watch": "jest --watch --config ./jest/jest-config.js"
},
"repository": "https://github.com/lechodiman/luischodiman.me",
"author": "Luis Chodiman <lechodiman@uc.cl>",
"license": "MIT",
"keywords": [],
"dependencies": {
"bluebird": "^3.7.2",
"classnames": "^2.2.6",
"codecov": "^3.6.2",
"gatsby": "^2.19.10",
"gatsby-image": "^2.2.41",
"gatsby-link": "^2.2.28",
"gatsby-plugin-catch-links": "^2.1.24",
"gatsby-plugin-feed": "^2.3.26",
"gatsby-plugin-google-gtag": "^1.1.21",
"gatsby-plugin-manifest": "^2.2.40",
"gatsby-plugin-netlify": "^2.1.31",
"gatsby-plugin-offline": "^3.0.33",
"gatsby-plugin-optimize-svgs": "^1.0.3",
"gatsby-plugin-react-helmet": "^3.1.21",
"gatsby-plugin-sass": "^2.1.27",
"gatsby-plugin-sharp": "^2.4.4",
"gatsby-plugin-sitemap": "^2.2.26",
"gatsby-plugin-typescript": "^2.1.27",
"gatsby-remark-autolink-headers": "^2.1.23",
"gatsby-remark-copy-linked-files": "^2.1.36",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "^3.1.43",
"gatsby-remark-katex": "^3.1.23",
"gatsby-remark-prismjs": "^3.3.30",
"gatsby-remark-relative-images": "^0.2.3",
"gatsby-remark-responsive-iframe": "^2.2.31",
"gatsby-remark-smartypants": "^2.1.20",
"gatsby-source-filesystem": "^2.1.47",
"gatsby-transformer-remark": "^2.6.49",
"gatsby-transformer-sharp": "^2.3.13",
"invariant": "^2.2.4",
"katex": "^0.11.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"node-sass": "^4.13.1",
"normalize-scss": "^7.0.1",
"prismjs": "^1.19.0",
"react": "^16.12.0",
"react-disqus-comments": "^1.4.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-markdown": "^4.3.1"
},
"devDependencies": {
"@babel/core": "7.8.3",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-optional-chaining": "7.8.3",
"@babel/plugin-syntax-jsx": "^7.8.3",
"@babel/preset-env": "7.8.3",
"@babel/preset-react": "7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/classnames": "^2.2.9",
"@types/jest": "^25.1.2",
"@types/lodash": "^4.14.149",
"@types/react-helmet": "^5.0.15",
"@types/react-test-renderer": "^16.9.2",
"autoprefixer": "9.7.4",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.3",
"babel-jest": "25.1.0",
"babel-preset-gatsby": "0.2.27",
"browserslist": "4.8.6",
"concurrently": "5.1.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jest": "23.6.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.18.0",
"eslint-watch": "6.0.1",
"identity-obj-proxy": "3.0.0",
"jest": "25.1.0",
"jest-cli": "25.1.0",
"lost": "8.3.1",
"postcss-pxtorem": "4.0.1",
"react-test-renderer": "16.12.0",
"rimraf": "3.0.1",
"stylelint": "13.0.0",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-scss": "3.14.2"
}
}