-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./bin/www.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js -i",
"test-ui": "node ./tests/userInterface.puppeteer.js"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"type": "module",
"dependencies": {
"@azure/storage-blob": "^12.17.0",
"bcrypt": "^5.1.1",
"chalk": "^5.3.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"i18n": "^0.15.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.4",
"multer": "^1.4.5-lts.1",
"prettier": "^3.0.3",
"puppeteer": "^21.5.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"jest": "^29.7.0",
"supertest": "^6.3.3"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"bracketSpacing": true,
"arrowParens": "always"
}
}