-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 2.8 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
104
105
106
107
108
109
110
111
112
113
114
{
"name": "glutenproject",
"version": "0.1.0",
"main": "index.js",
"repository": "[email protected]:BeeDesignLLC/GlutenProject.com.git",
"author": "Brandon Bayer <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node server.js",
"build": "next build",
"analyze": "BUNDLE_ANALYZE=both yarn build",
"now-start": "NODE_ENV=production node server.js",
"lint-format": "eslint --ext .js pages --fix",
"test": "exit",
"precommit": "lint-staged"
},
"dependencies": {
"@babel/preset-flow": "7.0.0-beta.51",
"@zeit/next-bundle-analyzer": "0.1.1",
"apollo-boost": "0.1.9",
"currency.js": "1.1.4",
"debounce-fn": "1.0.0",
"graphql": "0.13.2",
"is-present": "1.0.0",
"isomorphic-fetch": "2.2.1",
"micro": "9.3.2",
"next": "6.0.3",
"path-match": "1.2.4",
"path-to-regexp": "2.2.1",
"prop-types": "15.6.1",
"raven": "2.6.2",
"raven-js": "3.26.2",
"react": "16.4.1",
"react-dom": "16.4.1",
"react-instantsearch": "5.1.0",
"react-structured-data": "flybayer/react-structured-data#fix-ssr",
"styled-components": "3.3.2",
"styled-css-grid": "0.11.0",
"system-components": "2.0.4",
"title": "3.3.0",
"upper-case-first": "1.1.2"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.51",
"@babel/plugin-transform-flow-strip-types": "7.0.0-beta.51",
"@babel/preset-flow": "7.0.0-beta.51",
"babel-eslint": "8.2.3",
"babel-plugin-styled-components": "1.5.1",
"eslint": "4.19.1",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-flowtype": "2.49.3",
"eslint-plugin-flowtype-errors": "3.6.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.0",
"flow-bin": "0.74.0",
"eslint-plugin-react": "7.9.1",
"husky": "0.14.3",
"lint-staged": "7.2.0",
"prettier": "1.13.5"
},
"browser": {
"raven": "raven-js"
},
"engines": {
"node": "10"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"node": true,
"browser": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"prettier"
],
"plugins": [
"react",
"flowtype",
"jsx-a11y",
"prettier",
"flowtype-errors"
],
"rules": {
"flowtype-errors/show-errors": 2,
"prettier/prettier": [
"error",
{
"printWidth": 90,
"semi": false,
"trailingComma": "es5",
"bracketSpacing": false,
"singleQuote": true
}
],
"react/display-name": 0,
"jsx-a11y/anchor-is-valid": 0
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}