-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.68 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
{
"name": "softwarerepository",
"version": "1.0.0",
"description": "A platform to discover softwares",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node index.js",
"start-dev": "cross-env NODE_ENV=development nodemon index.js",
"test": "cross-env NODE_ENV=test jest --verbose --runInBand",
"test-debug": "cross-env NODE_ENV=test jest --verbose --runInBand --detectOpenHandles",
"test-coverage": "cross-env CI=true npm test -- --coverage",
"test-ci": "cross-env NODE_ENV=test jest --verbose --runInBand --forceExit",
"lint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/learnsoftwaredevelopment/SoftwareRepository.git"
},
"keywords": [
"software",
"repository",
"app",
"watch",
"monitor",
"notify",
"platform"
],
"author": "JonathanLeeWH",
"license": "MIT",
"bugs": {
"url": "https://github.com/learnsoftwaredevelopment/SoftwareRepository/issues"
},
"homepage": "https://github.com/learnsoftwaredevelopment/SoftwareRepository#readme",
"dependencies": {
"axios": "^0.27.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dot-object": "^2.1.4",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-async-errors": "^3.1.1",
"firebase-admin": "^11.0.0",
"mongoose": "^6.4.1",
"mongoose-unique-validator": "^3.1.0",
"morgan": "^1.10.0",
"validator": "^13.7.0"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^27.3.1",
"jest-node-exports-resolver": "^1.1.5",
"nodemon": "^2.0.18",
"supertest": "^6.2.2"
}
}