-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.51 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
{
"name": "lentovaraukset",
"version": "1.0.0",
"private": true,
"main": "index.js",
"workspaces": [
"frontend",
"backend",
"shared"
],
"scripts": {
"build": "tsc --jsx react",
"build:frontend": "npm -w @lentovaraukset/frontend run build",
"cypress:open": "cypress open --project shared",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"start": "npm run start:backend & npm run start:frontend",
"start:backend": "npm -w @lentovaraukset/backend run start",
"start:database": "docker compose -f docker-compose.dev.yml up",
"start:database-dev": "docker compose -f docker-compose.dev.yml up -d && docker exec -it lentovaraukset-db-1 bash -c 'psql -U postgres'",
"start:frontend": "npm -w @lentovaraukset/frontend run start",
"start:test": "npm -w @lentovaraukset/backend run start:test & npm -w @lentovaraukset/frontend run start",
"test": "npm -ws --if-present run test"
},
"dependencies": {
"dotenv": "^16.0.3",
"luxon": "^3.3.0"
},
"devDependencies": {
"@types/jest": "^29.2.6",
"@types/luxon": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"cypress": "^12.5.1",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.3.1",
"jest-transform-stub": "^2.0.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
}
}