Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 47 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"node": "12.16.x"
},
"scripts": {
"start": "NODE_PATH=. node app/index.js",
"dev": "NODE_PATH=. $(npm bin)/nodemon app/index.js",
"lint": "$(npm bin)/eslint {test/api,app,lib}",
"test": "npm run lint && npm run unit-test && bin/check-deps && npm run api-test",
"unit-test": "NODE_PATH=. $(npm bin)/jest",
"unit-test-watch": "$(npm bin)/jest --watch",
"api-test": "NODE_PATH=. ./test/api/js/run",
"start": "cross-env NODE_PATH=. node app/index.js",
"dev": "cross-env NODE_PATH=. nodemon app/index.js",
"lint": "eslint {test/api,app,lib}",
"test": "npm run lint && npm run unit-test && bash bin/check-deps && npm run api-test",
"unit-test": "cross-env NODE_PATH=. jest",
"unit-test-watch": "jest --watch",
"api-test": "cross-env NODE_PATH=. ./test/api/js/run",
"line-count": "find {app,lib} -iname '*.js'| grep -v test | xargs wc -l",
"line-count-test": "find {app,lib,test} -iname '*.js'| grep test |xargs wc -l"
},
Expand All @@ -25,6 +25,7 @@
"algoliasearch": "3.29.0",
"axios": "0.19.2",
"bugsnag": "2.4.3",
"cross-env": "^7.0.3",
"graphql": "14.0.2",
"graphql-iso-date": "3.6.1",
"graphql-type-json": "0.2.1",
Expand Down