-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
112 lines (112 loc) · 3.4 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
{
"name": "blyp",
"version": "1.0.0",
"description": "Point of Sale for a new era.",
"scripts": {
"build": "webpack -c -d -w",
"buildnow": "webpack -c -d",
"bundle": "webpack --config webpack.config.js",
"deploy": "gcloud app deploy --project getblyp16",
"forever": "forever start -c nodemon index.js",
"here": "NODE_ENV=development concurrently \"npm run build\" \"nodemon index.js\"",
"prestart": "npm run bundle",
"start": "node index.js",
"test-back": "./node_modules/.bin/mocha specs/server/spec.js; ",
"test-front": "mocha --require ignore-styles --compilers js:babel-register --recursive specs/client/spec.js",
"test":"./node_modules/.bin/mocha specs/server/spec.js; mocha --require ignore-styles --compilers js:babel-register --recursive specs/client/spec.js"
},
"engines": {
"node": "6.2.0"
},
"keywords": [
"blyp",
"pos",
"point of sale"
],
"author": "LargeHRCollider",
"license": "MIT",
"bugs": {
"url": "https://github.com/largehrcollider/blyp/issues"
},
"homepage": "https://github.com/largehrcollider/blyp/issues#readme",
"dependencies": {
"axios": "^0.11.1",
"babel-cli": "^6.9.0",
"babel-core": "6.9.0",
"babel-loader": "6.2.4",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.5.0",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.4.0",
"body-parser": "^1.15.1",
"bootstrap": "^3.3.6",
"bootstrap-material-design": "^0.5.9",
"classnames": "^2.2.5",
"concurrently": "^2.1.0",
"cookie-parser": "^1.4.2",
"copy-webpack-plugin": "3.0.0",
"css-loader": "^0.23.1",
"express": "^4.13.4",
"express-jwt": "^3.4.0",
"express-session": "^1.13.0",
"file-loader": "^0.8.5",
"gcloud": "^0.36.0",
"hammerjs": "^2.0.8",
"html-webpack-plugin": "2.17.0",
"jsonwebtoken": "^7.0.1",
"jwt-decode": "^2.0.1",
"material-ui": "^0.15.0",
"mongodb": "^2.1.20",
"mongoose": "^4.4.19",
"mongoose-type-url": "^1.0.2",
"mongoose-unique-validator": "^1.0.2",
"morgan": "^1.7.0",
"multer": "^1.1.0",
"n": "",
"nconf": "^0.8.4",
"q": "^1.4.1",
"radium": "^0.17.1",
"react": "15.1.0",
"react-dom": "15.1.0",
"react-facebook-login": "^2.1.4",
"react-google-maps": "^4.11.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "4.0.4",
"react-stripe-checkout": "^1.8.0",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-form": "^5.2.5",
"redux-logger": "^2.6.1",
"redux-thunk": "2.1.0",
"socket.io": "",
"socket.io-client": "",
"stripe": "^4.7.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": ""
},
"devDependencies": {
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"eslint": "^2.11.0",
"eslint-plugin-react": "^5.1.1",
"expect": "^1.20.2",
"forever": "^0.15.2",
"ignore-styles": "^4.0.0",
"live-server": "1.0.0",
"lodash": "4.13.1",
"mocha": "^2.5.3",
"nock": "^8.0.0",
"react-addons-test-utils": "^15.2.0",
"react-hot-loader": "^1.3.0",
"reduce-reducers": "0.1.2",
"redux-devtools": "^3.3.1",
"redux-mock-store": "^1.0.4",
"request": "^2.72.0",
"static-site-generator-webpack-plugin": "^2.1.0",
"webpack-dev-server": "^1.14.1"
}
}