-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.88 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.88 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
{
"name": "icebox",
"version": "1.0.0",
"description": "A food inventory management application",
"main": "app.js",
"scripts": {
"compile": "webpack --config webpack.config.js",
"lint": "eslint src/components src/reducers src/actions --fix",
"lint:server": "eslint server",
"lint:server:fix": "npm run lint:server -- --fix",
"lint:src": "eslint src",
"lint:src:fix": "npm run lint:src -- --fix",
"start": "node server/server.js",
"test": "mocha --compilers js:babel-core/register --require ./test/testHelper.js --recursive ./test",
"test:watch": "npm run test -- --watch",
"webpack-dev-server": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js"
},
"precommit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ColdForge/icebox.git"
},
"homepage": "https://github.com/ColdForge/icebox#readme",
"keywords": [
"none"
],
"author": "Nathaniel Schwab, Colin Zarnegar, Andrew Yao, Austin Sefton",
"license": "MIT",
"bugs": {
"url": "https://github.com/ColdForge/icebox/issues"
},
"dependencies": {
"aws-sdk": "^2.4.4",
"axios": "^0.12.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.1",
"classnames": "^2.2.5",
"cors": "^2.7.1",
"express": "4.13.4",
"jwt-simple": "^0.5.0",
"knex": "^0.11.5",
"lodash": "^4.13.1",
"material-ui": "^0.15.0",
"mysql": "^2.11.1",
"neal-react": "^0.2.5",
"node-schedule": "^1.1.0",
"node-uuid": "^1.4.7",
"passport": "^0.3.2",
"passport-jwt": "^2.0.0",
"passport-local": "^1.0.0",
"react": "^15.1.0",
"react-addons-css-transition-group": "^15.1.0",
"react-dom": "^15.1.0",
"react-native": "^0.27.2",
"react-parallax": "^0.4.3",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.5",
"react-s3-uploader": "^3.2.0",
"react-sticky": "^5.0.3",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-form": "^5.2.5",
"redux-thunk": "^2.1.0",
"request": "^2.72.0",
"request-promise": "^3.0.0",
"sweetalert-react": "^0.4.4",
"tether": "^1.3.2"
},
"devDependencies": {
"babel-core": "^6.2.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-react": "^5.1.1",
"jquery": "^2.2.1",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"nodemon": "^1.9.2",
"pre-commit": "^1.1.3",
"react-addons-test-utils": "^15.1.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.0"
}
}