-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.74 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
{
"name": "applicants-system",
"version": "1.0.0",
"description": "An application to facilitate code academy application process for applicants and help them to complete their applications easily and on time, also help code academy team to track , filter and create applications.",
"main": "index.js",
"scripts": {
"server": "cd server && npm run dev",
"client": "cd client && npm start",
"test": "echo \"Error: no test specified\"",
"start": "NODE_ENV=production node server/index.js",
"dev": "nodemon server/index.js",
"kill": "fuser -k 5000/tcp",
"kill-run": "npm run kill && npm run server",
"heroku-postbuild": "cd client && npm install && npm run build",
"build:database:pro": "NODE_ENV=production node server/database/index.js",
"build:database:dev": "NODE_ENV=test node server/database/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G8/applicants-system.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G8/applicants-system/issues"
},
"homepage": "https://github.com/GSG-G8/applicants-system#readme",
"dependencies": {
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"env2": "^2.2.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.6",
"morgan": "^1.10.0",
"serve-favicon": "^2.5.0",
"yup": "^0.28.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.2",
"prettier": "^2.0.2",
"supertest": "^4.0.2"
}
}