This repository has been archived by the owner on Feb 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
129 lines (129 loc) · 3.16 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "hss-headspace",
"version": "0.1.0",
"license": "MIT",
"devDependencies": {
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.8.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.5.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "^1.9.2"
},
"dependencies": {
"apollo-cache-inmemory": "^1.1.5",
"apollo-client": "^2.2.0",
"apollo-client-preset": "^1.0.6",
"apollo-link-http": "^1.3.2",
"apollo-server-hapi": "^1.3.2",
"babel-cli": "^6.26.0",
"concurrently": "^3.5.1",
"draft-js": "^0.10.4",
"font-awesome": "^4.7.0",
"graphql": "^0.12.3",
"graphql-tag": "^2.6.1",
"graphql-tools": "^2.18.0",
"graphql-type-json": "^0.1.4",
"hapi": "^17.2.0",
"json-server": "^0.12.1",
"node-fetch": "^1.7.3",
"nodemon": "^1.14.11",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-apollo": "^2.0.4",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-scripts": "1.0.17",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"winston": "^3.0.0-rc1"
},
"scripts": {
"start": "concurrently --kill-others \"yarn run dev\" \"yarn run dev-server\" \"yarn run json-server\"",
"debug": "concurrently --kill-others \"yarn run dev\" \"yarn run debug:dev-server\" \"yarn run json-server\"",
"dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint .",
"precommit": "lint-staged",
"dev-server": "nodemon ./server.js --exec babel-node",
"debug:dev-server": "nodemon --inspect ./server.js --exec babel-node",
"json-server": "json-server -p 8080 db.json"
},
"babel": {
"presets": [
"env"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"eslintConfig": {
"extends": [
"airbnb",
"prettier",
"prettier/react"
],
"env": {
"browser": true
},
"parserOptions": {
"ecmaVersion": 2017
},
"plugins": [
"prettier"
],
"rules": {
"react/no-string-refs": "off",
"react/no-unused-prop-types": "off",
"import/no-unresolved": 0,
"import/extensions": 0,
"import/no-extraneous-dependencies": "off",
"no-console": "off",
"prettier/prettier": [
"error",
{
"singleQuote": true,
"parser": "flow",
"trailingComma": "es5",
"bracketSpacing": true
}
],
"react/jsx-wrap-multilines": 0,
"arrow-parens": [
"error",
"as-needed"
],
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
]
},
"globals": {
"fetch": true,
"describe": true,
"test": true,
"expect": true
}
},
"optionalDependencies": {
"redux-devtools-extension": "^2.13.2"
},
"proxy": "http://localhost:4000",
"nodemonConfig": {
"watch": ["server.js","server/"]
}
}