-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "accounts",
"version": "1.0.0",
"description": "accounts service",
"main": "index.js",
"scripts": {
"test": "mocha ./test",
"start-dev": "NODE_ENV=dev nodemon server/index.js",
"start-prod": "NODE_ENV=prod node server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CryptocracyExchange/users.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CryptocracyExchange/users/issues"
},
"homepage": "https://github.com/CryptocracyExchange/users#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"deepstream.io-client-js": "^2.1.1",
"express": "^4.14.0",
"jsonwebtoken": "^7.2.1",
"morgan": "^1.7.0",
"path": "^0.12.7"
},
"devDependencies": {
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0"
}
}