forked from OriginProtocol/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "@origin/faucet",
"description": "Origin TestNet faucet",
"version": "0.1.0",
"author": "Origin Protocol Inc",
"license": "MIT",
"engines": {
"node": "10.x"
},
"repository": {
"type": "git",
"url": "https://github.com/OriginProtocol/origin"
},
"bugs": {
"url": "https://github.com/OriginProtocol/origin/issues"
},
"scripts": {
"lint": "eslint . && npm run prettier:check",
"prettier": "prettier --write *.js \"src/**/*.js\"",
"prettier:check": "prettier -c *.js \"src/**/*.js\"",
"migrate": "sequelize db:migrate",
"start": "per-env",
"start:development": "nodemon src/app.js --network_ids=999",
"start:production": "node src/app.js"
},
"dependencies": {
"@origin/bridge": "^0.1.0",
"@origin/token": "^0.1.0",
"dotenv": "^6.2.0",
"envkey": "^1.2.4",
"express": "^4.16.4",
"logplease": "^1.2.15",
"per-env": "^1.0.2",
"pg": "^7.7.1",
"rate-limiter-flexible": "^0.19.4",
"sequelize": "^5.0.0-beta.14",
"sequelize-cli": "^5.4.0",
"web3": "1.0.0-beta.34"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.7"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}