-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "nela-risk-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test:backend": "vitest run",
"coverage": "npm run test:backend -- --run --reporter verbose --coverage",
"lint": "eslint",
"cy:run-e2e": "cypress run --e2e",
"test:ui": "start-server-and-test start http://localhost:3000 cy:run-e2e",
"test": "npm run test:backend && npm run test:ui"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2",
"nodemon": "^3.1.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@vitest/coverage-istanbul": "^2.1.1",
"ajv": "^8.17.1",
"cypress": "^13.15.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.28.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"start-server-and-test": "^2.0.8",
"vee-validate": "^4.14.6",
"vite": "^5.4.3",
"vitest": "^2.1.1"
}
}