forked from OriginProtocol/origin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.84 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
{
"name": "@origin/growth",
"description": "Origin growth engine",
"version": "0.1.0",
"engines": {
"node": "10.x"
},
"author": "Origin Protocol Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/OriginProtocol/origin/issues"
},
"dependencies": {
"@origin/auth-utils": "^0.1.0",
"@origin/discovery": "^0.1.0",
"@origin/graphql": "^0.1.1",
"@origin/growth-shared": "^0.1.0",
"@origin/identity": "^0.1.0",
"@origin/ip2geo": "^0.1.0",
"@origin/token": "^0.1.0",
"@sendgrid/mail": "6.5.2",
"apollo-server-express": "2.11.0",
"body-parser": "1.19.0",
"bignumber.js": "9.0.0",
"cors": "2.8.5",
"cross-fetch": "3.0.4",
"csvtojson": "2.0.10",
"dotenv": "8.2.0",
"envkey": "1.2.7",
"express": "4.17.1",
"express-prom-bundle": "5.1.5",
"graphql-iso-date": "3.6.1",
"graphql-type-json": "0.3.1",
"http": "0.0.0",
"libphonenumber-js": "1.7.38",
"logplease": "1.2.15",
"per-env": "1.0.2",
"pg": "7.18.1",
"sequelize": "5.21.4",
"sequelize-cli": "5.5.1",
"url": "0.11.0",
"validator": "12.2.0",
"web3": "1.0.0-beta.34"
},
"devDependencies": {
"chai": "4.2.0",
"chai-things": "0.2.0",
"chalk": "3.0.0",
"mocha": "7.0.1",
"nodemon": "2.0.2",
"prettier": "1.19.1",
"rewire": "4.0.1"
},
"scripts": {
"lint": "eslint . && npm run prettier:check",
"prettier": "prettier --write *.js \"src/**/*.js\"",
"prettier:check": "prettier -c *.js \"src/**/*.js\"",
"migrate": "sequelize db:migrate",
"fixtures": "node src/util/fixtures.js",
"start": "per-env",
"start:development": "nodemon src/apollo/app.js",
"start:production": "node src/apollo/app.js",
"test": "NODE_ENV=test mocha --timeout 10000 --exit"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}