-
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.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 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": "dochain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "node_modules/.bin/eslint . --fix",
"lint:fix": "prettier-eslint --write '**/*.js'",
"dev": "nodemon index.js --exec 'npm run lint && babel-node'",
"start": "babel-node index.js"
},
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"babel-core": "^7.0.0-bridge.0",
"babel-preset-airbnb": "^3.2.1",
"bcryptjs": "^2.4.3",
"cheke": "^1.0.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"morgan": "^1.9.1",
"nodemon": "^1.19.0",
"pg": "^7.11.0",
"pg-hstore": "^2.3.2",
"sequelize": "^5.8.5",
"sequelize-cli": "^5.4.0",
"stellar-sdk": "^1.0.1",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cop1fab/dochain.git"
},
"author": "Olivier Esuka <olivier.esuka@andela.com> (https://oesukam.me)",
"license": "ISC",
"bugs": {
"url": "https://github.com/cop1fab/dochain/issues"
},
"homepage": "https://github.com/cop1fab/dochain#readme"
}