-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "student-tracker",
"version": "0.0.1",
"description": "",
"main": "server.js",
"scripts": {
"dev": "nodemon -w . --exec \"babel-node ./src/index.js\"",
"start": "nodemon -w . --exec \"babel-node ./src/index.js\"",
"lint": "eslint src",
"lint:fix": "./node_modules/.bin/eslint --fix src",
"build": "babel src --out-dir dist --copy-files",
"serve": "node dist/index.js"
},
"dependencies": {
"aws-sdk": "^2.715.0",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dayjs": "^1.8.29",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"lodash": "^4.17.16",
"mongoose": "^5.9.21",
"passport": "^0.4.1",
"passport-github": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/node": "^7.10.4",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"nodemon": "^2.0.4"
},
"repository": {
"url": "https://github.com/codeyourfuture/student-tracker-api"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
]
}