forked from nrai14/acebook-betta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
58
59
{
"name": "acebook",
"version": "0.0.0",
"description": "Template for the AceBook project",
"license": "CC BY-NC-SA",
"private": true,
"scripts": {
"lint": "eslint .",
"start": "nodemon ./bin/www",
"start:test": "PORT=3030 MONGODB_URL='mongodb://0.0.0.0/acebook_test' npm start",
"test:unit": "jest --testMatch '**/spec/models/**/*.[jt]s?(x)'",
"test:e2e": "jest --testMatch '**/test/**/*.[jt]s?(x)'",
"test:integration": "cypress run",
"test": "npm run lint && npm run test:unit && npm run test:integration",
"test:all": "npm run test && npm run test:e2e"
},
"engines": {
"node": ">=18.1.0"
},
"dependencies": {
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"chance": "1.1.11",
"chromedriver": "^114.0.2",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dompurify": "^3.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"hbs": "^4.1.0",
"http-errors": "~1.6.3",
"jsdom": "^22.1.0",
"lint": "^0.8.19",
"method-override": "^3.0.0",
"mongodb": "^3.4.1",
"mongoose": "^5.8.11",
"morgan": "~1.9.1",
"nodemon": "^2.0.15",
"sanitize-html": "^2.10.0",
"supertest": "^6.3.3",
"validator": "^13.9.0"
},
"devDependencies": {
"cypress": "^9.5.1",
"eslint": "^8.42.0",
"eslint-plugin-cypress": "^2.8.1",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-react": "^7.32.2",
"geckodriver": "^4.0.4",
"jest": "^27.5.1",
"selenium-webdriver": "^4.10.0",
"sinon": "^15.1.2"
},
"nodemonConfig": {
"ext": "js,hbs"
}
}