-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.24 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.24 KB
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
{
"name": "project-tracker-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node ./api/app.js",
"dev": "nodemon ./api/app.js",
"schema": "nodemon ./server/seeders/userSchema",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olacodes/Project-Tracker-api.git"
},
"author": "Olatunde Sodiq",
"license": "ISC",
"bugs": {
"url": "https://github.com/olacodes/Project-Tracker-api/issues"
},
"homepage": "https://github.com/olacodes/Project-Tracker-api#readme",
"dependencies": {
"@babel/polyfill": "^7.8.7",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"make-runnable": "^1.3.6",
"moment": "^2.24.0",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"babel-watch": "^7.0.0",
"jest": "^25.2.7",
"morgan": "^1.10.0",
"supertest": "^4.0.2"
}
}