-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 1.63 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
{
"name": "opif",
"private": true,
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"build:serve": "gatsby serve-build",
"deploy": "gatsby build --prefix-links && gh-pages -d public",
"pages": "gh-pages -d public"
},
"dependencies": {
"chartist": "^0.10.1",
"lodash": "^4.17.4",
"react": "^15.4.2",
"react-chartist": "^0.12.0",
"react-ga": "^2.1.2",
"react-grid-system": "^2.7.0",
"react-helmet": "^5.0.0",
"react-twitter-widgets": "^1.2.0"
},
"devDependencies": {
"babel-eslint": "^7.2.0",
"eslint": "^3.18.0",
"eslint-plugin-react": "^6.10.3",
"gatsby": "^0.12.39",
"markdown-it-anchor": "^4.0.0",
"markdown-it-attrs": "^0.8.0",
"markdown-it-container": "^2.0.0",
"markdown-it-footnote": "^3.0.1",
"markdown-it-table-of-contents": "^0.3.2",
"gh-pages": "^0.12.0"
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"globals": {
"emailjs": true,
"twttr": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-console": "warn"
}
}
}