-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 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
{
"name": "hackifieds",
"version": "0.0.1",
"description": "Classifieds for Hack Reactor students",
"author": "Hack Reactor Hackifieds Team",
"license": "MIT",
"private": false,
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"start": "nodemon --ignore node_modules ./server/app.js",
"test": "node shortly.js & mocha --bail --reporter nyan test/ServerSpec.js",
"lint": "eslint ./"
},
"dependencies": {
"body-parser": "^1.15.1",
"bootstrap": "^3.3.6",
"eslint": "^2.10.2",
"eslint-config-hackreactor": "github:hackreactor-labs/eslint-config-hackreactor",
"express": "^4.13.4",
"express-session": "^1.13.0",
"jquery": "^2.2.4",
"morgan": "^1.7.0",
"multer": "^1.1.0",
"mysql": "^2.10.2",
"passport": "^0.3.2",
"passport-github2": "^0.1.10",
"react": "^15.1.0",
"react-bootstrap": "^0.29.4",
"react-dom": "^15.1.0",
"react-router": "^2.4.1",
"require": "^2.4.20",
"sequelize": "^3.23.3",
"underscore": "^1.8.3"
},
"repository": {
"type": "git",
"url": "git://github.com/Hackifieds/hackifieds.git",
"private": false
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"webpack": "^1.13.1"
}
}