-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1015 Bytes
/
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
{
"name": "solita-vaccine-exercise",
"version": "1.0.0",
"description": "A web application showcasing vaccine orders and vaccinations",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest --verbose --runInBand",
"lint": "eslint .",
"build:ui": "rm -rf build/ && cd frontend-for-vaccine-exercise/ && npm run build && cp -r build ../",
"cypress:open": "cypress open",
"cypress:e2e": "cypress run"
},
"author": "maarila",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"nodemon": "^2.0.12",
"pg": "^8.7.1"
},
"devDependencies": {
"cypress": "^8.2.0",
"eslint": "^7.32.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-react": "^7.24.0",
"jest": "26.6.0",
"supertest": "^6.1.4"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/cypress/",
"<rootDir>/frontend-for-vaccine-exercise/"
]
}
}