-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.38 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.38 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "API-Bootstrap",
"version": "1.0.0",
"description": "GraphQL API Boostraping Project - Integrated with GraphQL, Express, ES6/ES7, Webpack and Babel",
"scripts": {
"start": "nodemon --watch 'server/**/*.js' --exec \"npm run update && cross-env NODE_ENV=development babel-node server/index.js\"",
"update": "babel-node server/utils/updateSchema.js",
"staging": "cross-env NODE_ENV=staging npm run update && npm run build-staging && cross-env NODE_ENV=staging node build/index.js",
"deploy": "cross-env NODE_ENV=production npm run update && npm run build && cross-env NODE_ENV=production node build/index.js",
"build": "npm run temp && npm run build-server && npm run clear",
"build-staging": "npm run temp && npm run build-server-staging && npm run clear",
"build-server": "cross-env NODE_ENV=production ./node_modules/.bin/babel ./server --out-dir ./temp",
"build-server-staging": "cross-env NODE_ENV=staging ./node_modules/.bin/babel ./server --out-dir ./temp",
"lint": "eslint --ignore-path .gitignore server",
"temp": "rm -rf temp && mkdir temp",
"clear": "rm -rf build && mv temp build && rm -rf temp",
"clean": "rm -rf build && mv temp build && rm -rf temp",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pre-commit": "lint",
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"graphql",
"express",
"es6",
"es7",
"webpack",
"babel",
"scaffolding"
],
"author": "Filip Stojanac",
"license": "MIT",
"devDependencies": {
"eslint": "^3.14.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"nodemon": "^1.11.0",
"pre-commit": "^1.1.3"
},
"dependencies": {
"aws-sdk": "^2.58.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"babel-relay-plugin": "^0.9.3",
"babel-runtime": "^6.20.0",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.5.0",
"body-parser": "^1.15.2",
"bunyan": "^1.8.10",
"chalk": "^1.1.3",
"connect-history-api-fallback": "^1.3.0",
"connect-session-knex": "^1.3.0",
"cookie-session": "^2.0.0-alpha.2",
"cors": "^2.8.1",
"cross-env": "^3.1.3",
"dataloader": "^1.3.0",
"dotenv-safe": "^3.0.0",
"express": "^4.14.0",
"express-graphql": "^0.6.1",
"express-rate-limit": "^2.9.0",
"express-session": "^1.14.2",
"graphql": "^0.8.2",
"graphql-relay": "^0.4.4",
"graphql-type-json": "^0.1.4",
"jsonwebtoken": "latest",
"knex": "^0.12.6",
"lodash": "^4.17.2",
"lokka": "^1.7.0",
"lokka-transport-http": "^1.6.1",
"moment": "^2.16.0",
"moment-timezone": "^0.5.10",
"multer": "^1.3.0",
"mysql": "^2.12.0",
"nodemailer": "^2.7.0",
"progress": "^1.1.8",
"qs-google-signature": "^1.2.0",
"randexp": "^0.4.4",
"react": "^15.4.1",
"react-relay": "^0.9.3",
"react-relay-network-layer": "^1.3.6",
"session-memory-store": "^0.2.2",
"slug": "^0.9.1",
"treeize": "^2.0.2",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2",
"winston": "^2.3.0"
}
}