This repository was archived by the owner on Nov 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.57 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
52
53
54
55
{
"name": "virtual_hand",
"main": "server.js",
"engines": {
"node": "16.x"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@popperjs/core": "^2.11.0",
"bcrypt": "^5.0.1",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"bootstrap": "^4.6.1",
"connect-flash": "^0.1.1",
"connect-mongo": "^4.6.0",
"express": "^4.17.1",
"express-rate-limit": "^5.5.1",
"express-session": "^1.17.2",
"jquery": "^3.6.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.2.1",
"mongoose": "^6.1.1",
"nodemailer": "^6.7.2",
"passport": "^0.5.0",
"passport-local": "1.0.0",
"pug": "^3.0.2",
"randomstring": "^1.2.1",
"request": "^2.88.2",
"serve-static": "^1.14.1",
"socket.io": "^4.4.0",
"utf-8-validate": "^5.0.7"
},
"scripts": {
"start": "node server.js",
"back_unit": "nyc --reporter=lcov jasmine JASMINE_CONFIG_PATH=spec/support/jasmine_unit.json",
"front_unit": "nyc --reporter=lcov karma start --single-run --browsers ChromeHeadless",
"integration": "nyc --reporter=lcov jasmine JASMINE_CONFIG_PATH=spec/support/jasmine_integrate.json"
},
"devDependencies": {
"chai": "^4.3.4",
"jasmine": "^3.10.0",
"jasmine-core": "^3.10.1",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^4.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-requirejs": "^1.1.0",
"nyc": "^15.1.0",
"puppeteer": "^5.5.0",
"requirejs": "^2.3.6",
"rewire": "^5.0.0"
}
}