-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.26 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
{
"name": "hrmsystem-backend",
"version": "0.0.1",
"description": "The backend for a human resource management system",
"main": "./src/app.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"start": "node ./src/bin/www",
"test": "jest ./tests/* --verbose",
"nodemon": "npx nodemon ./src/bin/www"
},
"dependencies": {
"bluebird": "^3.7.2",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"express": "~4.16.1",
"express-ejs-layouts": "^2.5.0",
"http-errors": "~1.6.3",
"lodash": "^4.17.15",
"morgan": "~1.9.1",
"mysql": "^2.17.1",
"mysql2": "^2.0.1",
"sinon": "^7.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greatwhitesharks/hrmsystem.git"
},
"keywords": [
"hrm",
"human",
"resource",
"managment",
"pim"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/greatwhitesharks/hrmsystem/issues"
},
"homepage": "https://github.com/greatwhitesharks/hrmsystem#readme",
"devDependencies": {
"chai": "^4.2.0",
"errorhandler": "^1.5.1",
"eslint": "^6.7.2",
"eslint-config-google": "^0.14.0",
"jest": "^24.9.0",
"nodemon": "^2.0.1"
}
}