-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.59 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
{
"name": "chingu-connect",
"version": "0.0.0",
"description": "A tool to connect learners. Designed serendipity",
"main": "app.js",
"scripts": {
"start": "NODE_ENV='prod' node app.js",
"test": "jest --i",
"test:server": "NODE_ENV='test' nodemon app.js",
"test:verbose": "jest -i --verbose",
"test:coverage": "jest -i --coverage",
"dev": "echo 'http://localhost:8008/graphiql' && NODE_ENV='dev' nodemon app.js",
"hack": "concurrently --kill-others \"npm run dev\" \"npm run build:dev\"",
"share": "ngrok http 8008",
"build:dev": "webpack-dev-server --hot --watch --config config/webpack/webpack.dev.js",
"build:prod": "webpack --config config/webpack/webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chingu-x/chingu-connect.git"
},
"keywords": [
"chingu",
"chingu-connect",
"learning"
],
"author": "Chingu X",
"license": "MIT",
"bugs": {
"url": "https://github.com/chingu-x/chingu-connect/issues"
},
"homepage": "https://github.com/chingu-x/chingu-connect#readme",
"dependencies": {
"apollo-boost": "^0.1.6",
"apollo-server-express": "^1.3.6",
"axios": "^0.17.1",
"body-parser": "^1.18.2",
"clean-webpack-plugin": "^0.1.19",
"concurrently": "^3.5.1",
"connect-redis": "^3.3.3",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"express-session": "^1.15.6",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"graphql": "^0.13.2",
"graphql-import": "^0.5.2",
"graphql-tag": "^2.9.2",
"graphql-tools": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"mongoose": "^5.0.17",
"passport": "^0.4.0",
"passport-github2": "^0.1.11",
"react": "^16.3.2",
"react-apollo": "^2.1.4",
"react-dom": "^16.3.2",
"react-hot-loader": "^4.1.3",
"redis": "^2.8.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.8.2",
"webpack-merge": "^4.1.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"coveralls": "^3.0.1",
"css-loader": "^0.28.11",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.3",
"mockingoose": "^2.9.1",
"ngrok": "^2.2.24",
"node-sass": "^4.9.0",
"nodemon": "^1.14.11",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
}
}