-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 1.21 KB
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 1.21 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
{
"name": "canitrust-frontend-api",
"version": "1.6.0",
"description": "The API for the CanITrust.in frontend. Find out more at canitrust.in",
"license": "AGPL-3.0",
"repository": "github:canitrust/frontend-api",
"main": "index.js",
"scripts": {
"prestart": "npm install",
"start": "node index.js",
"test": "mocha test/*.js",
"lint": "eslint ./*.js ./config/*.js ./controllers/*.js ./models/*.js ./service/*.js ./test/*.js"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"escape-string-regexp": "^2.0.0",
"express": "^4.16.4",
"fs-extra": "^7.0.0",
"js-yaml": "3.13.1",
"mongoose": "^5.12.14",
"mongoose-paginate": "^5.0.3",
"morgan": "^1.9.1",
"swagger-tools": "^0.10.4",
"xmlbuilder": "^14.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"editorconfig": "^0.15.2",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.17.0",
"mocha": "7.1.1",
"prettier": "1.19.1"
}
}