-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.29 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
{
"name": "Butter",
"version": "0.1.0",
"description": "The next big thing, created with Concatapult.",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js --ignore client/components",
"test": "./test/run.sh",
"start.dev": "nodemon server/ --ignore client/components",
"build": "webpack",
"build:watch": "webpack --watch",
"dev": "webpack-dev-server",
"lint": "./node_modules/.bin/eslint ./server ./client ./client/Components/**.jsx"
},
"author": "Darion Freeman, Calvin Kniffin, Robert Guajardo, Jason Barnett, Joey Steinberger",
"license": "MIT",
"babel": {
"plugins": [
"transform-object-rest-spread"
]
},
"dependencies": {
"apac": "^2.0.2",
"axios": "^0.15.3",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"body-parser": "^1.15.2",
"connect-redis": "^3.2.0",
"css-loader": "^0.25.0",
"d3": "^4.3.0",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"express-session": "^1.14.2",
"extract-text-webpack-plugin": "^1.0.1",
"jquery": "^3.1.1",
"jsx-loader": "^0.13.2",
"knex": "^0.12.6",
"nodemailer": "^2.6.4",
"passport": "^0.3.2",
"passport-google-oauth": "^1.0.0",
"pg": "^6.1.0",
"react": "^15.3.2",
"react-autosuggest": "^7.0.1",
"react-bootstrap": "^0.30.6",
"react-dom": "^15.3.2",
"react-popup": "^0.4.2",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-router-bootstrap": "^0.23.1",
"redis": "^2.6.5",
"redux": "^3.6.0",
"style-loader": "^0.13.1",
"sweetalert-react": "^0.4.5",
"uuid": "^2.0.3",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-dev-server": "^1.16.2",
"webpack-merge": "^0.15.0"
},
"devDependencies": {
"apac": "^2.0.2",
"babel-cli": "^6.18.0",
"chai": "^3.5.0",
"chai-subset": "^1.3.0",
"eslint": "^3.9.1",
"eslint-plugin-react": "^6.5.0",
"install": "^0.8.2",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"npm": "^3.10.9",
"pre-commit": "^1.1.3",
"pult-cli": "*",
"react-popup": "^0.4.2",
"supertest": "^2.0.0",
"supertest-as-promised": "^4.0.0"
},
"pre-commit": [
"lint"
]
}