1
Fork 0
photoview/api-node-old/package.json

74 lines
2.0 KiB
JSON
Raw Normal View History

2019-07-05 00:36:32 +02:00
{
"name": "photoview-api",
2019-07-05 00:36:32 +02:00
"version": "0.0.1",
"description": "API app for GRANDstack",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-dev": "./node_modules/.bin/nodemon --exec babel-node src/index.js",
"build": "babel src -d build; cp .env build; cp src/schema.graphql build",
"now-build": "babel src -d build; cp .env build; cp src/schema.graphql build",
"start": "npm run build && node build/index.js",
"seedDb": "./node_modules/.bin/babel-node src/seed/seed-db.js"
},
"author": "Viktor Strate",
"license": "GPL-3.0",
2019-07-05 00:36:32 +02:00
"dependencies": {
2020-01-19 22:25:03 +01:00
"@babel/node": "^7.8.3",
"@babel/plugin-transform-spread": "^7.8.3",
"apollo-boost": "^0.4.7",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link-http": "^1.5.16",
"apollo-server": "^2.9.16",
2019-07-07 23:53:07 +02:00
"babel-runtime": "^6.26.0",
2020-01-19 22:25:03 +01:00
"bcrypt": "^3.0.7",
2019-07-05 00:36:32 +02:00
"body-parser": "^1.19.0",
2020-01-19 22:25:03 +01:00
"core-js": "^3.6.4",
"dotenv": "^8.2.0",
"exiftool-vendored": "^9.5.0",
2019-07-16 18:31:48 +02:00
"fs-extra": "^8.1.0",
2019-07-05 00:36:32 +02:00
"graphql-tag": "^2.10.1",
2020-01-19 22:25:03 +01:00
"image-size": "^0.8.3",
2019-07-18 22:33:18 +02:00
"image-type": "^4.1.0",
"is-image": "^3.0.0",
2019-07-05 00:36:32 +02:00
"jsonwebtoken": "^8.5.1",
2019-08-01 23:03:30 +02:00
"lodash": "^4.17.15",
"neo4j-driver": "^1.7.6",
2020-01-19 22:25:03 +01:00
"neo4j-graphql-js": "^2.11.5",
2019-07-07 15:54:39 +02:00
"node-fetch": "^2.3.0",
2019-07-18 22:33:18 +02:00
"read-chunk": "^3.2.0",
2019-08-01 23:03:30 +02:00
"regenerator-runtime": "^0.13.3",
2020-01-19 22:25:03 +01:00
"sharp": "^0.24.0",
"uuid": "^3.4.0"
2019-07-05 00:36:32 +02:00
},
"devDependencies": {
2020-01-19 22:25:03 +01:00
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-eslint": "^10.0.3",
2020-01-19 22:25:03 +01:00
"eslint": "^6.8.0",
"husky": "^4.0.10",
"lint-staged": "^10.0.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1"
2019-07-07 23:53:07 +02:00
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
2019-07-05 00:36:32 +02:00
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,graphql": [
"prettier --write",
"git add"
]
}
}