-
Notifications
You must be signed in to change notification settings - Fork 214
/
package.json
39 lines (39 loc) · 1.16 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
{
"name": "librelingo-monorepo",
"version": "1.0.0",
"private": true,
"description": "This is the monorepo for LibreLingo",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"web-dev": "npm -w librelingo-web run dev",
"build": "npm -w librelingo-web run build",
"type-check": "npm -w librelingo-web run type-check",
"e2e:test": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:report": "playwright show-report",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "npx prettier --check .",
"format": "npx prettier . --write",
"course:build": "./scripts/exportYamlCourse.sh"
},
"workspaces": [
"apps/librelingo-web"
],
"keywords": [],
"author": "",
"dependencies": {
"playwright": "^1.44.1"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@types/node": "^20.12.12",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.3",
"eslint-plugin-unicorn": "^55.0.0",
"prettier": "3.3.3"
}
}