-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 2.29 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
{
"name": "storyshop-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "tape -r babel-polyfill -r babel-register src/**/*spec.js | faucet",
"test:ci": "tape -r babel-polyfill -r babel-register src/**/*spec.js",
"data:worlds": "mongoimport --db dev --drop --jsonArray --type json --file fixtures/worlds.json --collection worlds",
"data:outlines": "mongoimport --db dev --drop --jsonArray --type json --file fixtures/outlines.json --collection outlines",
"data:characters": "mongoimport --db dev --drop --jsonArray --type json --file fixtures/characters.json --collection characters",
"data:genes": "mongoimport --db dev --drop --jsonArray --type json --file fixtures/genes.json --collection genes",
"data:users": "mongoimport --db dev --drop --jsonArray --type json --file fixtures/users.json --collection users",
"data:elements": "mongoimport --db dev --drop --jsonArray --type json --file fixtures/elements.json --collection elements",
"data": "npm run data:worlds && npm run data:characters && npm run data:users && npm run data:outlines && npm run data:elements && npm run data:genes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StoryShop/api.git"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/StoryShop/api/issues"
},
"homepage": "https://github.com/StoryShop/api#readme",
"dependencies": {
"aws-sdk": "^2.2.41",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.5.2",
"body-parser": "^1.15.0",
"cors": "^2.7.1",
"debug": "^2.2.0",
"express": "^4.13.4",
"falcor-express": "^0.1.2",
"falcor-http-datasource": "^0.1.3",
"falcor-json-graph": "^1.1.7",
"falcor-router": "^0.2.12",
"googleapis": "^3.1.0",
"jsonwebtoken": "^5.7.0",
"mongodb": "2.1.15",
"multiparty": "^4.1.2",
"neo4j-driver": "^1.0.4",
"opml-generator": "^1.1.1",
"rx": "^4.1.0",
"shortid": "^2.2.4",
"uservoice-sso": "^0.1.0"
},
"devDependencies": {
"babel-polyfill": "^6.5.0",
"faucet": "0.0.1",
"nodemon": "^1.8.1",
"tape": "^4.4.0"
}
}