forked from kaliacad/atracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.56 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
{
"name": "atrack",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"type": "module",
"scripts": {
"start": "nodemon ./",
"test": "NODE_ENV=development mocha ./tests --timeout 10000",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint . src/**/*.js --fix",
"seed": "npx sequelize-cli db:seed:all",
"seed:revert": "npx sequelize-cli db:seed:undo",
"migrate:status": "npx sequelize-cli db:migrate:status",
"migrate:revert": "npx sequelize-cli db:migrate:undo",
"migrate": "npx sequelize-cli db:migrate",
"db:setup": "npm run migrate && npm run seed"
},
"keywords": [
"education",
"tracker",
"attendance"
],
"author": [
"Abel",
"Cedric"
],
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"bootstrap": "^5.2.0-beta1",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"chalk": "^5.0.1",
"connect-flash": "^0.1.1",
"connect-pg-simple": "^7.0.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-pg-session": "^1.1.0",
"express-session": "^1.17.3",
"mocha": "^10.2.0",
"morgan": "^1.10.0",
"nodemailer": "^6.7.6",
"nodemon": "^2.0.18",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.26.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"babel-register": "^6.26.0",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"sequelize-cli": "^6.5.2"
}
}