forked from abereghici/remix-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.28 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": "remix-themes-monorepo",
"private": true,
"workspaces": [
"packages/remix-themes",
"packages/remix-themes-app"
],
"scripts": {
"build": "yarn workspace remix-themes build",
"format": "prettier --ignore-path .eslintignore --write ./ && npm run lint:fix",
"lint": "eslint --cache .",
"lint:fix": "yarn lint --fix",
"app:dev": "yarn build && yarn workspace remix-themes-app dev",
"app:build": "yarn build && yarn workspace remix-themes-app build",
"app:start": "yarn app:build && yarn workspace remix-themes-app start",
"test": "vitest -w=false",
"test:watch": "vitest -w",
"test:e2e:dev": "playwright test",
"pretest:e2e:run": "npm-run-all --parallel build app:build",
"test:e2e:run": "cross-env CI=true playwright test",
"typecheck": "yarn workspace remix-themes typecheck",
"validate": "npm-run-all --parallel typecheck lint test"
},
"devDependencies": {
"@playwright/test": "^1.30.0",
"@remix-run/eslint-config": "latest",
"@vitest/coverage-c8": "^0.28.4",
"cross-env": "^7.0.3",
"eslint": "^8.33.0",
"eslint-plugin-testing-library": "^5.10.0",
"happy-dom": "^8.2.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"vitest": "^0.28.4"
},
"engines": {
"node": ">=14"
}
}