-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.32 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "employee-explorer",
"version": "1.0.0",
"description": "Recursive employee explorer (multiway tree) using React along with duplicates removal",
"scripts": {
"start:server": "nodemon server",
"start:client": "react-scripts start",
"start": "concurrently -c \"bgBlue.bold,bgMagenta.bold\" \"npm:start:server\" \"npm:start:client\"",
"lint": "eslint \"src/**/*.{js,jsx}\" --cache --cache-location \".cache/.eslintcache/\"",
"format": "npm run lint -- --fix",
"test": "react-scripts test",
"check": "npm run lint && cross-env CI=true npm run test",
"build": "npm run check && react-scripts build",
"eject": "react-scripts eject"
},
"engines": {
"node": "12.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pgmanutd/employee-explorer.git"
},
"keywords": [
"react",
"hooks",
"custom-hooks",
"recursive",
"recursion",
"react-recursion",
"employee",
"explorer",
"employee-explorer",
"tree",
"multiway",
"multiway-tree",
"multi-way",
"multi-way-tree",
"duplicates",
"duplicates-removal",
"remove-duplicates",
"traversal",
"tree-traversal"
],
"author": "pgmanutd <prashantmanunited@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pgmanutd/employee-explorer/issues"
},
"dependencies": {
"bootstrap": "^4.5.3",
"express": "^4.17.1",
"lodash": "^4.17.20",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"eslint": "^7.18.0",
"eslint-plugin-prettier": "^3.3.1",
"history": "^5.0.0",
"http-proxy-middleware": "^1.0.6",
"jest-localstorage-mock": "^2.4.6",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
},
"eslintConfig": {
"extends": "react-app",
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": 2
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}