-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.42 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
50
51
{
"name": "girl-code-it-backend",
"version": "1.0.0",
"description": "This is the backend service for the girl code it services ",
"main": "index.js",
"scripts": {
"test": "npm run build && mocha --exit --recursive ./dist/tests/|| true",
"test:utility": "npm run build && mocha --exit --recursive ./dist/tests/utility || true",
"test:profile": "npm run build && mocha --exit --recursive ./dist/tests/profile || true",
"build": "tsc",
"start": "node ./dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Girl-Code-It/Girl-Code-It-Website-Backend-.git"
},
"keywords": [
"Backend",
"NodeJS",
"TypeScript",
"Code",
"girl-code-it"
],
"author": "girl-code-it",
"license": "ISC",
"bugs": {
"url": "https://github.com/Girl-Code-It/Girl-Code-It-Website-Backend-/issues"
},
"homepage": "https://github.com/Girl-Code-It/Girl-Code-It-Website-Backend-#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/node": "^14.0.27",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.28",
"morgan": "^1.10.0",
"path": "^0.12.7"
},
"devDependencies": {
"@types/mocha": "^8.0.1",
"chai": "^4.2.0",
"mocha": "^8.1.1",
"supertest": "^4.0.2",
"ts": "^0.2.2",
"typescript": "^3.9.7"
}
}