-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
41 lines (41 loc) · 1.28 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
{
"name": "findabuddy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"test": "mocha --bail --reporter landing test/ServerSpec.js",
"babel": "babel public/components/. --out-dir public/components/compiled --presets=es2015,react --ignore=node_modules,compiled --source-maps inline",
"babel-watch": "babel public/components/. --out-dir public/components/compiled --presets=es2015,react --ignore=node_modules,compiled --source-maps inline --watch",
"postinstall": "bower install && npm run babel"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.17.2",
"bootstrap": "^3.3.7",
"bower": "^1.8.0",
"chai": "^4.0.2",
"connect-mongodb-session": "^1.3.0",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"ejs": "^2.5.6",
"ejs-lint": "^0.3.0",
"express": "^4.15.3",
"express-partials": "^0.3.0",
"express-session": "^1.15.3",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"mocha": "^3.4.2",
"mongoose": "^4.10.8",
"nodemon": "^1.11.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"sinon": "^2.3.5",
"supertest": "^3.0.0",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1"
}
}