-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.68 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
{
"name": "apiserver",
"version": "1.0.0",
"description": "API server for services",
"main": "index.js",
"scripts": {
"build": "babel src -d prod",
"dev-server": "nodemon --delay 1.5 dev/server/server.js",
"dev": "npm run lint && (npm run watch-server & npm run dev-server)",
"test": "mocha test/browser.js test/**/*",
"test:watch": "mocha tests/client/components/* --compilers js:babel-core/register --watch --reporter min",
"lint": "eslint --quiet src/",
"start": "npm run start:production",
"start:production": "node prod/server/server.js",
"watch-server": "babel --watch src -d dev",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KA-VR/apiserver.git"
},
"author": "KA-VR",
"license": "ISC",
"bugs": {
"url": "https://github.com/KA-VR/apiserver/issues"
},
"homepage": "https://github.com/KA-VR/apiserver#readme",
"devDependencies": {
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2"
},
"dependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"cors": "^2.7.1",
"dictionary-scrape": "^0.1.2",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"google-search-scrape": "^0.2.5",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.0.0",
"lru-cache": "^4.0.1",
"mongoose": "^4.5.3",
"node-soundcloud": "0.0.5",
"openweather": "^1.0.4",
"redis": "^2.6.2",
"text-calculator": "^1.1.0",
"yelp": "^1.0.1",
"youtube-node": "^1.3.0"
}
}