-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "lf-api",
"version": "5.5.0",
"description": "GraphQL API for lightfilms",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Test Succesfull\"",
"dev": "nodemon --exec babel-node ./src/index.js",
"build": "babel src --out-dir dist --source-maps inline",
"deploy": "node ./dist/index.js",
"docs": "jsdoc -c ./jsdoc.config.json",
"audit": "npm audit fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssandry/lf-api.git"
},
"keywords": [
"Express",
"GraphQL",
"Babel",
"Apollo",
"Apollo-Client",
"Firebase",
"Heroku",
"API"
],
"author": "@ssandry <https://github.com/ssandry> <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ssandry/lf-api/issues"
},
"homepage": "https://github.com/ssandry/lf-api#readme",
"dependencies": {
"apollo-server-express": "^2.24.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase": "^8.6.1",
"graphql": "^15.5.0"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/node": "^7.13.13",
"@babel/preset-env": "^7.13.15",
"nodemon": "^2.0.7"
}
}