-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 755 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "internetmyshop",
"private": true,
"license": "UNLICENSED",
"author": "Rinat Sarmuldin <ura07srr@gmail.com>",
"engines": {
"node": ">=24 <25"
},
"scripts": {
"web:install": "npm --prefix apps/web install",
"web:dev": "npm --prefix apps/web run dev",
"web:build": "npm --prefix apps/web run build",
"web:lint": "npm --prefix apps/web run lint",
"web:test:unit": "npm --prefix apps/web run test:unit",
"web:typecheck": "npm --prefix apps/web run typecheck",
"web:test:e2e:install": "npm --prefix apps/web run test:e2e:install",
"web:test:e2e": "npm --prefix apps/web run test:e2e",
"web:quality": "npm run web:lint && npm run web:typecheck && npm run web:test:unit && npm run web:build"
}
}