-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.24 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "lyrical-graphql",
"version": "1.0.0",
"description": "Starter project from a GraphQL course on Udemy.com",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon index.js --ignore client",
"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)\"",
"check-format": "npm run pretty -- --list-different",
"precommit": "npm-run-all --parallel lint pretty",
"validate": "npm-run-all --parallel check-format lint"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.4",
"@apollo/client": "^3.8.8",
"babel-core": "^6.26.3",
"babel-loader": "^8.3.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.20.2",
"connect-mongo": "^4.6.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.7",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"express-session": "^1.17.3",
"graphql": "^15.8.0",
"html-webpack-plugin": "^5.5.3",
"lodash": "^4.17.21",
"mongoose": "^5.13.21",
"nodemon": "^2.0.22",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"react": "^16.14.0",
"react-apollo": "^3.1.5",
"react-dom": "^16.14.0",
"react-router-dom": "^5.3.4",
"style-loader": "^2.0.0",
"webpack": "^5.89.0",
"webpack-dev-middleware": "^4.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^12.1.4",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.7.1",
"husky": "^6.0.0",
"lint-staged": "^11.2.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prop-types": "^15.8.1"
}
}