-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.23 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
{
"name": "yiou-blog",
"description": "Yiou's blog",
"private": true,
"version": "0.0.0",
"author": "Yiou Chen <[email protected]>",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-brands-svg-icons": "^5.8.1",
"@fortawesome/free-regular-svg-icons": "^5.8.1",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"babel-plugin-polished": "^1.1.0",
"babel-preset-gatsby": "^0.1.11",
"core-js": "^2.6.5",
"disqus-react": "^1.0.5",
"gatsby": "^2.3.14",
"gatsby-plugin-html-attributes": "^1.0.5",
"gatsby-plugin-linaria": "^1.1.1",
"gatsby-plugin-manifest": "^2.0.26",
"gatsby-plugin-polished": "^1.0.4",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-remark-prismjs": "^3.2.7",
"gatsby-source-contentful": "^2.0.45",
"gatsby-transformer-remark": "^2.3.8",
"linaria": "^1.3.1",
"lodash": "^4.17.11",
"polished": "^3.2.0",
"prismjs": "^1.16.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0",
"yiou-css-base": "^0.1.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"clean": "rm -rf ./public",
"build": "npm run clean && npm run build:dev",
"build:dev": "gatsby build",
"serve": "gatsby serve",
"dev": "npm run clean && gatsby develop",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint .",
"test": "echo \"Error: I only test in production\" && exit 1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.12.4",
"prettier": "^1.15.2"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"no-unused-vars": "off"
}
},
"eslintIgnore": [
"public",
".linaria-cache",
".cache"
]
}