-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.99 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.99 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "aimarket_server",
"private": true,
"version": "0.0.1",
"description": "aimarket_server",
"repository": {
"type": "git",
"url": "git+https://github.com/ATMatrix/aimarket_server.git"
},
"keywords": [
"ai",
"market"
],
"author": "ATMatrix",
"license": "ISC",
"bugs": {
"url": "https://github.com/ATMatrix/aimarket_server/issues"
},
"homepage": "https://github.com/ATMatrix/aimarket_server#readme",
"scripts": {
"start": "babel-node src/server.js",
"dev": "NODE_ENV=development babel-node src/server.js",
"pro": "NODE_ENV=production node production/server.js",
"tst": "NODE_ENV=test babel-node src/server.js",
"build": "rm -rf production && babel src/ --out-dir ./production",
"buildTest": "babel ./src/test.js --out-dir ./production",
"lint": "eslint --ext .js src test",
"precommit": "npm run lint",
"babel-version": "babel --version"
},
"engines": {
"install-node": "8.4.0"
},
"dependencies": {
"baidu-aip-sdk": "^1.4.1",
"body-parser": "^1.18.1",
"compression": "^1.7.1",
"cors": "^2.8.4",
"ethereumjs-tx": "^1.3.3",
"express": "^4.15.4",
"graphql": "^0.10.5",
"graphql-server-express": "^1.1.2",
"graphql-tools": "^1.2.2",
"moment": "^2.18.1",
"mysql": "^2.14.1",
"node-fetch": "^1.7.3",
"path": "^0.12.7",
"redis": "^2.8.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"socket.io": "^2.0.4",
"truffle-contract": "^3.0.1",
"unirest": "^0.5.1",
"web3": "^0.19.1",
"watson-developer-cloud": "^2.42.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.1.1",
"babel-plugin-import": "^1.5.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-graphql": "^1.3.0",
"eslint-plugin-import": "^2.2.0",
"expect": "^1.20.2",
"husky": "^0.12.0",
"pre-commit": "^1.2.2"
}
}