-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "say-their-names-node-service",
"version": "0.0.1",
"description": "## Overview",
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5"
},
"scripts": {
"start": "node server/api/index.js",
"_eslint": "eslint .",
"_prettier": "prettier .",
"format": "run-s '_prettier -- --write' '_eslint -- --fix'",
"lint": "run-s _eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Say-Their-Name/say-their-names-node-service.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Say-Their-Name/say-their-names-node-service/issues"
},
"homepage": "https://github.com/Say-Their-Name/say-their-names-node-service#readme",
"dependencies": {
"axios": "^0.19.2",
"config": "^3.3.1",
"ejs": "^3.1.3",
"express": "^4.17.1",
"fs": "0.0.1-security",
"mongoose": "^5.9.19",
"nodemon": "^2.0.4",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4"
}
}