-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.43 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
46
{
"name": "users",
"version": "1.0.0",
"description": "express/graphql learnings",
"main": "index.js",
"scripts": {
"dev": "npm-run-all --parallel json:server start",
"start": "nodemon server.js",
"json:server": "json-server --watch db.json",
"check-format": "npm run pretty -- --list-different",
"commit": "npx git-cz",
"format": "npm run pretty -- --write",
"lint": "eslint --ignore-path .gitignore --ext .js --ext .jsx .",
"pretty": "prettier --ignore-path .gitignore \"**/*.+(js|json|md)\"",
"validate": "npm-run-all --parallel check-format lint"
},
"author": "Lenny Peters <@loonz206>",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-sonarjs": "^0.19.0",
"express": "^4.19.2",
"express-graphql": "^0.12.0",
"graphql": "^15.3.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8"
},
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"json-server": "^0.17.4",
"nodemon": "^2.0.22"
}
}