-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.37 KB
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
{
"name": "versioned2",
"version": "0.0.1",
"description": "A CMS REST API on Node/Mongodb, similar to contentful",
"main": "app/index.js",
"engines": {
"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",
"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"
},
"author": "Peter Marklund",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "6.3.1",
"ajv": "6.12.0",
"algoliasearch": "3.29.0",
"axios": "0.19.2",
"bugsnag": "2.4.3",
"graphql": "14.0.2",
"graphql-iso-date": "3.6.1",
"graphql-type-json": "0.2.1",
"mongodb": "3.5.5",
"swagger-ui-dist": "3.13.3"
},
"devDependencies": {
"eslint": "~4.18.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "25.1.0",
"nodemon": "2.0.2"
}
}