-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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
{
"name": "vef2-2024-v2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "20"
},
"scripts": {
"dev": "node --env-file=.env --watch-path=./src ./src/app.js",
"start": "dotenv -e .env node ./src/app.js",
"setup": "dotenv -e .env node ./src/setup.js",
"test": "cross-env NODE_OPTIONS='--experimental-vm-modules' NODE_NO_WARNINGS=1 jest ./*.test.js",
"test:coverage": "cross-env NODE_OPTIONS='--experimental-vm-modules' NODE_NO_WARNINGS=1 jest ./*.test.js --coverage",
"lint": "run-p lint:*",
"lint:eslint": "eslint ./src/**/*.js",
"lint:stylelint": "stylelint ./public/styles.css"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.7.0",
"browser-sync": "^3.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.2",
"cpy-cli": "^4.2.0",
"stylelint": "^16.1.0",
"stylelint-config-standard": "^36.0.0"
},
"dependencies": {
"bcrypt": "^5.1.1",
"ejs": "^3.1.9",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.0.0",
"express": "^4.18.2",
"express-session": "^1.18.0",
"express-validator": "^7.0.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.11.3"
},
"jest": {
"collectCoverageFrom": [
"./src/**/lib/**"
]
}
}