-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.19 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
{
"name": "weatherstation-ui",
"version": "0.1.0",
"description": "WeatherStation using interface using Relay modern (GraphQL)",
"scripts": {
"start": "webpack-dev-server --watch --content-base public/ --open --host 0.0.0.0",
"build": "webpack --progress --colors",
"linter": "eslint --ext .jsx --ext .js src/ --ignore-pattern '**/__tests__/*'",
"relay": "relay-compiler --src ./src/js --schema schema.graphql"
},
"author": "Javier Delgado",
"dependencies": {
"chart.js": "^2.6.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-relay": "^1.1.0",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"semantic-ui-less": "^2.2.11",
"semantic-ui-react": "^0.71.3"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-relay": "^1.1.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-runtime": "^6.25.0",
"eslint": "^4.3.0",
"eslint-plugin-react": "^7.1.0",
"relay-compiler": "^1.1.0",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
}
}