-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.23 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "pharmaceutical-blockchain",
"version": "1.0.0",
"description": "",
"scripts": {
"lint": "eslint --ext .jsx,.js src",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"local": "./node_modules/.bin/nodemon --ignore public/",
"knex": "./node_modules/.bin/knex",
"build": "webpack",
"dev": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "https://github.com/maarsej/pharmaBlock"
},
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/maarsej/pharmaBlock/issues"
},
"homepage": "https://github.com/maarsej/pharmaBlock",
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"bcrypt": "^2.0.1",
"body-parser": "^1.15.2",
"cookie-session": "^2.0.0-beta.3",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"dotenv": "^2.0.0",
"eslint": "^3.14.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.0",
"express": "^4.13.4",
"html-webpack-plugin": "^2.28.0",
"json-loader": "^0.5.4",
"knex": "^0.14.6",
"knex-logger": "^0.1.0",
"minipass": "^2.3.0",
"morgan": "^1.7.0",
"node-pre-gyp": "^0.10.0",
"pg": "^6.0.2",
"solc": "^0.4.23",
"style-loader": "^0.13.1",
"truffle-contract": "^1.1.11",
"web3": "^0.20.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"yallist": "^3.0.2"
},
"dependencies": {
"bcrypt": "^2.0.1",
"body-parser": "^1.15.2",
"cookie-session": "^2.0.0-beta.3",
"cors": "^2.8.4",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"global": "^4.3.2",
"jsonwebtoken": "^8.2.1",
"knex": "^0.14.6",
"knex-logger": "^0.1.0",
"minipass": "^2.3.0",
"morgan": "^1.7.0",
"node-pre-gyp": "^0.10.0",
"pg": "^6.0.2",
"truffle": "^4.1.8",
"yallist": "^3.0.2"
}
}