-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.73 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
{
"name": "@laborx/profile.backend",
"version": "1.0.0",
"private": true,
"dependencies": {
"amqplib": "^0.5.2",
"async": "2.1.4",
"authenticator": "^1.1.5",
"axios": "^0.18.0",
"bignumber.js": "^7.2.1",
"bs58": "^4.0.1",
"bunyan": "^1.8.12",
"cloudinary": "1.7.0",
"config": "^1.28.0",
"cors": "^2.8.4",
"cross-env": "^5.1.0",
"dotenv": "4.0.0",
"ethereumjs-util": "^5.2.0",
"express-useragent": "^1.0.12",
"fs-extra": "^6.0.1",
"ipfs-api": "^22.0.1",
"joi": "^13.1.2",
"keystone": "4.0.0-beta.7",
"lodash": "^4.13.1",
"mime-types": "^2.1.18",
"moment": "^2.19.3",
"node-cache": "^4.2.0",
"node-schedule": "^1.3.0",
"nodemailer": "^4.3.1",
"restful-keystone": "^0.3.0",
"sanitize-html": "^1.14.1",
"sinon": "^4.4.6",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.0",
"tmp-promise": "^1.0.4",
"twilio": "^3.19.1",
"uniqid": "^5.0.3",
"web3": "^1.0.0-beta.34",
"websocket": "^1.0.25"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-chai-friendly": "^0.4.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.1",
"pm2": "^2.7.2"
},
"scripts": {
"dev": "node bin/www",
"start": "node bin/www",
"test": "cross-env NODE_ENV=test REST=true PORT=3002 node bin/test",
"lint": "./node_modules/eslint/bin/eslint.js --ext .js --fix models routes templates updates",
"lint:test": "./node_modules/eslint/bin/eslint.js --ext .js models routes templates updates"
}
}