-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.26 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.26 KB
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
{
"name": "neip",
"version": "1.0.0-beta",
"private": true,
"type": "module",
"description": "nEIP — next-generation EIP monorepo",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"type-check": "turbo run type-check",
"test": "turbo run test",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"test:a11y": "playwright test --config playwright.a11y.config.ts",
"test:e2e": "playwright test",
"ci": "pnpm lint && pnpm type-check && pnpm test:unit && pnpm test:integration",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .gitignore"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@playwright/test": "^1.58.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.0",
"turbo": "^2.0.0",
"typescript": "^5.7.0",
"vitest": "^4.1.0"
},
"packageManager": "pnpm@10.20.0"
}