-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
23 lines (23 loc) · 934 Bytes
/
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
{
"name": "knapsack-pro",
"private": true,
"workspaces": [
"packages/core",
"packages/jest",
"packages/jest-example-test-suite",
"packages/cypress",
"packages/cypress-example-test-suite",
"packages/vitest",
"packages/vitest-example-test-suite"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"test:core:coverage": "npm run test:coverage -w packages/core",
"test:jest": "npm run build && npm run test:ks -w packages/jest-example-test-suite",
"test:vitest": "npm run build && npm run test:ks -w packages/vitest-example-test-suite",
"test:cypress": "npm run build && npm run test:ks -w packages/cypress-example-test-suite",
"test:cra": "cd packages/create-react-app-example && npm install && npm run test:ks",
"test:examples": "npm run test:jest && npm run test:cypress && npm run test:cra"
}
}