-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
{
"name": "hcpp-admin",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "NODE_ENV=development node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"flow": "flow",
"test": "eslint && flow",
"eslint": "eslint *.js reducers pages components actions constants"
},
"dependencies": {
"babel-plugin-inline-dotenv": "^1.1.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"cookie": "^0.3.1",
"dotenv": "^5.0.1",
"graphql": "^0.12.3",
"graphql-tag": "^2.6.1",
"gravatar": "^1.6.0",
"isomorphic-fetch": "^2.2.1",
"moment-timezone": "^0.5.13",
"next": "^5.1.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-apollo": "^1.4.16",
"react-dom": "^16.2.0",
"react-dropzone": "^4.2.7",
"react-redux": "^5.0.6",
"redux": "^3.6.0",
"semantic-ui-css": "^2.2.12",
"semantic-ui-react": "^0.77.2",
"validator": "^9.2.0"
},
"author": "Pavel Ševčík <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"babel-eslint": "^8.2.1",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.63.1",
"flow-typed": "^2.2.0",
"prettier": "^1.10.2"
}
}