-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 2.27 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": "apollo-chat-graphql-client",
"version": "1.0.0",
"description": "Apollo Chat GraphQL Client",
"main": "''",
"scripts": {
"build": "webpack --config webpack.production.config.js --progress --profile --colors",
"deploy": "gh-pages -d dist",
"start": "webpack-dev-server --progress --profile --colors",
"lint": "standard | snazzy",
"lint:fix": "standard --fix | snazzy",
"dashboard": "webpack-dashboard -- webpack-dev-server --progress --profile --colors",
"dev": "webpack-dev-server --progress --profile --colors"
},
"repository": {
"type": "git",
"url": "https://github.com/gaston23/apollo-chat-graphql-client"
},
"standard": {
"parser": "babel-eslint",
"ignore": []
},
"author": "Gaston Morixe",
"license": "MIT",
"homepage": "https://github.com/gaston23/apollo-chat-graphql-client#readme",
"dependencies": {
"autosize": "^3.0.20",
"dotenv-webpack": "^1.4.3",
"graphql-tag": "^2.0.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"node-sass": "^4.5.2",
"react": "^15.5.4",
"react-apollo": "^1.2.0",
"react-dom": "^15.5.4",
"sass-loader": "^6.0.2",
"subscriptions-transport-ws": "^0.6.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-runtime": "^6.22.0",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.0",
"extract-text-webpack-plugin": "^v2.0.0-rc.1",
"file-loader": "^0.11.1",
"gh-pages": "^0.12.0",
"html-webpack-plugin": "^2.26.0",
"postcss-loader": "^1.2.2",
"react-hot-loader": "^3.0.0-beta.6",
"snazzy": "^7.0.0",
"standard": "*",
"style-loader": "^0.17.0",
"url-loader": "^0.5.8",
"webpack": "^2.4.1",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-dashboard": "^0.4.0",
"webpack-dev-server": "^2.4.1"
}
}