This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.82 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
{
"name": "@popcorn.moe/api",
"version": "1.0.0",
"description": "Popcorn.moe Api",
"main": "index.js",
"scripts": {
"start": "babel-node index.js",
"test": "jest --collectCoverageFrom='src/**'",
"flowgen": "babel-node build/flow.js",
"check": "flow check",
"format": "prettier --write index.js schema/**.graphql build/**/**.js migrations/**/**.js src/**/**.js test/**/**.js",
"precommit": "lint-staged",
"migration": "node create-migration"
},
"lint-staged": {
"*.{js,graphql}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Popcorn-moe/Api.git"
},
"author": "Popcorn-moe",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Popcorn-moe/Api/issues"
},
"homepage": "https://github.com/Popcorn-moe/Api#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^22.4.4",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"husky": "^0.14.3",
"jest": "^22.4.4",
"lint-staged": "^7.1.1",
"prettier": "^1.12.1"
},
"dependencies": {
"apollo-server-express": "^1.3.6",
"apollo-upload-server": "^5.0.0",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"db-migrate": "^0.11.1",
"db-migrate-mongodb": "^1.4.0",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-iso-date": "^3.5.0",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^3.0.1",
"md5": "^2.2.1",
"memoizee": "^0.4.12",
"mime": "^2.3.1",
"minio": "^5.0.2",
"mongodb": "^2.2.35",
"morgan": "^1.9.0",
"node-dogstatsd": "0.0.7",
"passport": "^0.4.0",
"passport-anonymous": "^1.0.1",
"passport-jwt": "^4.0.0",
"sharp": "^0.20.2",
"subscriptions-transport-sse": "^0.8.1"
}
}