-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 893 Bytes
/
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
{
"name": "e-catalog-server",
"version": "1.0.0",
"description": "All goods prices in this site!",
"author": "",
"license": "ISC",
"scripts": {
"dev": "nodemon -i",
"start": "node -r dotenv/config app",
"test": "eslint . && prettier '**/*.{json,yml,md}' -l"
},
"dependencies": {
"apollo-server": "^2.12.0",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"graphql": "14.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.9",
"validator": "^13.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-env": "^13.0.4",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-import-order-alphabetical": "^1.0.0",
"eslint-plugin-jsdoc": "^23.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"nodemon": "^2.0.3",
"prettier": "^2.0.4"
}
}