This repository has been archived by the owner on Apr 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.2 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": "b2b-gql-react",
"version": "1.2.0",
"description": "The Back to Bikes attendance app refactored as a GraphQL / React / Webpack Stack (Still using MongoDB).",
"main": "index.js",
"scripts": {
"server": "env-cmd .env nodemon ./index.js --ignore client",
"clean": "rimraf dist",
"dev": "nodemon index.js --ignore client",
"build": "cross-env NODE_ENV=production npm run clean && webpack -p",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Back2bikes/b2b-gql-react.git"
},
"author": "Joseph Szili",
"license": "ISC",
"bugs": {
"url": "https://github.com/Back2bikes/b2b-gql-react/issues"
},
"homepage": "https://github.com/Back2bikes/b2b-gql-react#readme",
"dependencies": {
"apollo-client": "^2.2.2",
"apollo-client-preset": "^1.0.8",
"body-parser": "^1.17.1",
"connect-mongo": "^1.3.2",
"cross-env": "^3.2.4",
"env-cmd": "^5.0.0",
"express": "^4.15.2",
"express-graphql": "^0.6.11",
"graphql": "^0.9.6",
"graphql-custom-datetype": "^0.4.0",
"graphql-tag": "^2.6.1",
"mongoose": "^4.13.10",
"nodemon": "^1.14.12",
"postcss": "^5.2.16",
"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-router-dom": "^4.2.2",
"redux": "^3.7.2",
"semantic-ui-css": "^2.2.14",
"semantic-ui-react": "^0.69.0",
"sugar": "^2.0.4"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-env": "^1.3.2",
"babel-preset-react": "^6.23.0",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"css-loader": "^0.28.9",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"jquery": "^3.3.1",
"jsdom": "^9.12.0",
"mocha": "^3.2.0",
"react-addons-test-utils": "^15.4.2",
"rifraf": "^2.0.3",
"style-loader": "^0.16.1",
"webpack": "^2.3.3",
"webpack-bundle-analyzer": "^2.10.0",
"webpack-dev-middleware": "^1.10.1"
}
}