-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 926 Bytes
/
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
{
"name": "user-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "PORT=3000 NODE_ENV=development DATABASE_URL=postgres://postgres:@localhost/auth node_modules/.bin/babel-node index",
"test": "NODE_ENV=test DATABASE_URL=postgres://postgres:@localhost/auth node_modules/.bin/mocha --compilers js:babel-register --recursive -w test/"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"mocha": "^2.5.3"
},
"dependencies": {
"bcrypt": "^0.8.6",
"body-parser": "^1.15.1",
"camelcase": "^3.0.0",
"express": "^4.13.4",
"express-oauth-server": "^1.0.0",
"morgan": "^1.7.0",
"node-uuid": "^1.4.7",
"oauth2-server": "^2.4.1",
"pg": "^5.1.0",
"sequelize": "^3.23.3"
}
}