-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 819 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 819 Bytes
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
{
"name": "learning-200-backend",
"version": "1.0.0",
"description": "backend for learn 200 hackaton",
"main": "package.json",
"scripts": {
"dev": "nodemon -L src/index",
"start": "nodemon -L src/index",
"test": "./node_modules/.bin/mocha 'src/tests/*.js' "
},
"repository": {
"type": "git",
"url": "git+https://github.com/joethecoderr/learning-200-backend.git"
},
"author": "learningator",
"license": "MIT",
"bugs": {
"url": "https://github.com/joethecoderr/learning-200-backend/issues"
},
"homepage": "https://github.com/joethecoderr/learning-200-backend#readme",
"dependencies": {
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"supertest": "^6.0.1"
}
}