-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 3.44 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
{
"name": "lunch",
"version": "0.0.1",
"description": "Get some lunch",
"scripts": {
"build": "npm run static-assets && npm run build:server",
"build:client": "webpack --config webpack.config.prod.js --json > out/buildstats.json",
"build:production": "npm run build && npm run build:client",
"build:server": "gulp build",
"clean": "node tasks/clean",
"seed-file": "knex seed:make",
"start": "npm run clean && npm run build && node out/server/start.js",
"start:production": "npm run clean && npm run build:production && node out/server/start.js",
"static-assets": "node tasks/static-assets",
"test": "npm run test:unit && npm run test:lint",
"test:lint": "eslint src/**/*.js test/**/*.js gulpfile.js webpack.config.*",
"test:unit": "gulp build && mocha out/test/**/*.spec.js"
},
"author": "Dean Merchant <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:Dean177/lunch.git"
},
"private": true,
"license": "ISC",
"dependencies": {
"babel": "6.5.2",
"babel-core": "6.7.0",
"babel-eslint": "5.0.0",
"babel-loader": "6.2.4",
"babel-plugin-add-module-exports": "0.1.2",
"babel-plugin-react-transform": "2.0.0",
"babel-plugin-rewire": "0.1.22",
"babel-plugin-transform-react-constant-elements": "6.5.0",
"babel-plugin-transform-react-inline-elements": "6.5.0",
"babel-plugin-transform-react-remove-prop-types": "0.2.2",
"babel-preset-es2015": "6.5.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"babel-register": "6.5.2",
"babel-runtime": "6.6.1",
"chai": "3.5.0",
"chai-spies": "0.7.1",
"classnames": "2.2.3",
"compression": "1.6.1",
"css-loader": "0.23.1",
"dirty-chai": "1.2.2",
"dotenv": "2.0.0",
"enzyme": "2.0.0",
"eslint": "2.2.0",
"eslint-config-airbnb": "6.0.2",
"eslint-loader": "1.3.0",
"eslint-plugin-react": "4.1.0",
"express": "4.13.4",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.4",
"font-awesome": "4.5.0",
"fs-extra": "0.26.5",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-mocha": "2.1.3",
"gulp-nodemon": "2.0.6",
"gulp-sourcemaps": "1.6.0",
"history": "1.17.0",
"http": "0.0.0",
"imports-loader": "0.6.5",
"jsdom": "8.1.0",
"knex": "0.10.0",
"mocha": "2.4.5",
"mocha-junit-reporter": "1.10.0",
"node-sass": "3.4.2",
"node-uuid": "1.4.3",
"nodemon": "1.9.1",
"null-loader": "0.1.1",
"pg": "^4.4.4",
"promise": "7.1.1",
"react": "0.14.7",
"react-addons-css-transition-group": "0.14.7",
"react-addons-test-utils": "0.14.7",
"react-autosuggest": "3.5.0",
"react-dom": "0.14.7",
"react-measure": "0.3.2",
"react-motion": "0.4.4",
"react-redux": "4.4.0",
"react-router": "2.0.0",
"react-router-redux": "4.0.0",
"react-transform-catch-errors": "1.0.2",
"react-transform-hmr": "1.0.2",
"redbox-react": "1.2.2",
"redux": "3.3.1",
"redux-thunk": "^1.0.3",
"rewire": "2.5.1",
"rewire-webpack": "1.0.1",
"sass-loader": "3.1.2",
"serve-favicon": "2.3.0",
"socket.io": "1.4.5",
"socket.io-client": "1.4.5",
"source-map-support": "0.4.0",
"splitwise-node": "0.3.3",
"style-loader": "0.13.0",
"underscore": "1.8.3",
"url-loader": "0.5.6",
"webpack": "1.12.14",
"webpack-dev-middleware": "1.5.1",
"webpack-hot-middleware": "2.9.0",
"winston": "2.2.0"
}
}