-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.47 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
47
48
{
"name": "express-graphql",
"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",
"test": "jest",
"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": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"dotenv": "^10.0.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-security": "^1.4.0",
"graphql": "^15.4.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"supertest": "^6.1.3"
},
"dependencies": {
"axios": "^1.6.8",
"express": "^4.19.2",
"express-graphql": "^0.12.0",
"json-server": "^0.17.4",
"lodash": "^4.17.20",
"nodemon": "^3.1.0"
}
}