-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 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
{
"name": "boxd_api",
"version": "1.0.0",
"description": "Api for trello clone with chat",
"main": "prod.js",
"scripts": {
"start": "NODE_ENV=development nodemon --exec babel-node -- app/start.js",
"test": "NODE_ENV=test mocha",
"start-db": "mongod --dbpath ./db_data",
"seed-db": "NODE_ENV=development nodemon --exec babel-node -- tasks/seed_db.js",
"build": "rm -rf build && babel -d ./build ./app",
"start-prod": "NODE_ENV=production pm2 start build/start.js",
"seed-db-prod": "NODE_ENV=production babel-node tasks/seed_db.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oldboyxx/boxd_api.git"
},
"author": "Ivor Reic",
"license": "ISC",
"bugs": {
"url": "https://github.com/oldboyxx/boxd_api/issues"
},
"homepage": "https://github.com/oldboyxx/boxd_api#readme",
"engines": {
"node": "5.9.0"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"body-parser": "^1.15.0",
"core-js": "^2.5.7",
"cors": "^2.7.1",
"express": "^4.13.4",
"faker": "^3.1.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.6.1",
"markdown-it": "^12.3.2",
"mongodb": "^3.5.3",
"mongoose": "^8.8.3",
"mongoose-timestamp": "^0.5.0",
"nodemon": "^2.0.2",
"passport": "^0.6.0",
"passport-google-oauth": "^1.0.0",
"require-all": "^2.0.0",
"supertest": "^4.0.2"
},
"devDependencies": {
"chai": "^3.5.0",
"sinon": "^1.17.3"
}
}