-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.4 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
{
"name": "vs-insoumis",
"private": true,
"dependencies": {
"lodash": "^4.17.4",
"react": "^15.4.2",
"react-ga": "^2.1.2",
"react-grid-system": "^2.6.0",
"react-helmet": "^5.0.3",
"smoothscroll": "^0.3.0",
"speakingurl": "^13.0.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.14.1",
"eslint-plugin-react": "^6.9.0",
"gatsby": "^0.12.38",
"gh-pages": "^0.12.0"
},
"scripts": {
"start": "gatsby develop",
"build": "gatsby build --prefix-links",
"build:serve": "gatsby serve-build",
"deploy": "gatsby build --prefix-links && gh-pages -d public",
"pages": "gh-pages -d public"
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true
},
"globals": {
"emailjs": 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"
}
}
}