-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathpackage.json
117 lines (117 loc) · 4.15 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "UniversalRelayBoilerplate",
"description": "Boilerplate + examples for React Native (iOS, Android), React (isomorphic, Material-UI), Relay, GraphQL, JWT, Node.js, Apache Cassandra",
"version": "3.0.0",
"private": true,
"license": "MIT",
"homepage": "http://codefoundries.com/products/starter-kit.html",
"repository": {
"type": "git",
"url": "git+https://github.com/codefoundries/UniversalRelayBoilerplate.git"
},
"engines": {
"node": ">=4",
"npm": ">=3"
},
"scripts": {
"postinstall": "npm run build-schema && npm run build-webpack",
"setup-local": "cp ./scripts/default.env ./.env",
"setup-cassandra-init": "cqlsh -f ./scripts/cassandra-init.cql",
"build-schema": "./node_modules/.bin/babel-node ./scripts/build-schema.js",
"build-webpack": "./node_modules/.bin/webpack -p --output-filename app.js",
"build-mui-icon-list": "./node_modules/.bin/babel-node ./scripts/build-mui-icon-list.js",
"config-da-memory": "./node_modules/.bin/replace OBJECT_PERSISTENCE=cassandra OBJECT_PERSISTENCE=memory ./.env",
"config-da-cassandra": "./node_modules/.bin/replace OBJECT_PERSISTENCE=memory OBJECT_PERSISTENCE=cassandra ./.env",
"start-webpack": "better-npm-run start-webpack",
"start-dev": "better-npm-run start-dev",
"update-ip": "./node_modules/.bin/babel-node ./scripts/update-local-ip-for-app.js",
"dev": "concurrently --kill-others \"npm run start-webpack\" \"npm run start-dev\"",
"prod": "export NODE_ENV=production && ./node_modules/.bin/babel-node ./server/server.js",
"start": "node node_modules/react-native/local-cli/cli.js start"
},
"betterScripts": {
"start-dev": {
"command": "nodemon --exec ./node_modules/.bin/babel-node -- ./server/server.js",
"env": {
"NODE_ENV": "development"
}
},
"start-webpack": {
"command": "./node_modules/.bin/webpack-dev-server --hot --inline --no-info --colors"
}
},
"metadata": {
"graphql": {
"schema": "./graphql/schema.json"
}
},
"dependencies": {
"babel-cli": "^6.5.5",
"babel-core": "^6.7.2",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-async-to-generator": "^6.7.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.3",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-relay-plugin": "^0.7.3",
"babel-relay-plugin-loader": "^0.7.3",
"babel-runtime": "^6.6.1",
"bcrypt": "^0.8.5",
"body-parser": "^1.15.0",
"cassandra-driver": "^3.0.2",
"classnames": "2.2.3",
"compression": "^1.6.1",
"cookie-parser": "^1.4.1",
"css-loader": "^0.23.1",
"dataloader": "^1.2.0",
"dotenv": "^2.0.0",
"ejs": "^2.4.1",
"eslint": "^2.7.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^4.3.0",
"express": "^4.13.4",
"express-graphql": "^0.4.10",
"extract-text-webpack-plugin": "^1.0.1",
"graphql": "^0.4.18",
"graphql-relay": "^0.3.6",
"isomorphic-relay": "^0.5.4",
"isomorphic-relay-router": "^0.6.3",
"jwt-simple": "^0.5.0",
"material-ui": "^0.14.4",
"material-ui-country-flags": "^2.1.2",
"material-ui-credit-card-icons": "^2.0.0",
"nib": "^1.1.0",
"node-fetch": "^1.5.0",
"nodemon": "^1.9.1",
"react": "^0.14.8",
"react-dimensions": "^1.0.2",
"react-dom": "^0.14.8",
"react-helmet": "^3.0.1",
"react-hot-loader": "^1.3.0",
"react-native": "^0.24.1",
"react-native-listitem": "1.0.5",
"react-native-swipeout": "2.0.12",
"react-relay": "^0.7.3",
"react-router": "^2.0.1",
"react-router-relay": "0.9.5",
"react-tap-event-plugin": "^0.2.2",
"relay-local-schema": "^0.3.2",
"replace": "^0.3.0",
"seq-queue": "0.0.5",
"style-loader": "^0.13.0",
"webpack": "^1.12.14",
"winston": "^2.2.0",
"winston-cassandra": "^0.4.0"
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.6.0",
"better-npm-run": "^0.0.8",
"concurrently": "^2.0.0",
"recursive-readdir-sync": "^1.0.6",
"webpack-dev-server": "^1.14.1"
}
}