-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
{
"name": "inquiry",
"version": "1.0.0",
"description": "a question/answer site like stackoverflow or quora",
"private": true,
"scripts": {
"start": "node ./bin/www",
"load": "mocha test/db/index.js --timeout 50000",
"heroku-postbuild": "cd client && npm install && npm run build",
"test": "jwtsecret=testsecret mocha test/apiTest.js --timeout 4000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/candh/inquiry.git"
},
"keywords": [
"qa",
"site",
"semester",
"project"
],
"author": "candh",
"license": "MIT",
"bugs": {
"url": "https://github.com/candh/inquiry/issues"
},
"homepage": "https://github.com/candh/inquiry#readme",
"dependencies": {
"app-root-path": "^3.0.0",
"bcrypt": "^5.0.0",
"deep-diff": "^1.0.2",
"diff": "^4.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-validator": "^6.9.2",
"express-winston": "^4.0.5",
"jsondiffpatch": "^0.3.11",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.11",
"morgan": "^1.10.0",
"validator": "^13.5.2",
"winston": "^3.3.3"
},
"devDependencies": {
"axios": "^0.21.1",
"chai": "^4.2.0",
"faker": "^5.1.0",
"mocha": "^8.2.1",
"mongodb-memory-server-global-4.4": "^6.9.3"
}
}