-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
36 lines (36 loc) · 1.33 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
{
"version": "0.1.0",
"private": true,
"repository": "https://github.com/simplabs/ember-cookies",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "concurrently \"pnpm lint:addon\" \"pnpm lint:test-app\"",
"lint:addon": "pnpm --filter ember-cookies lint",
"lint:fix": "concurrently \"pnpm lint:fix:addon\" \"pnpm lint:fix:test-app\"",
"lint:fix:addon": "pnpm --filter ember-cookies lint:fix",
"lint:fix:test-app": "pnpm --filter test-app lint:fix",
"lint:test-app": "pnpm --filter test-app lint",
"prepare": "pnpm --filter ember-cookies build",
"start": "concurrently \"pnpm start:addon\" \"pnpm start:test-app\"",
"start:addon": "pnpm --filter ember-cookies start",
"start:test-app": "pnpm --filter test-app start",
"test": "pnpm run test:test-app ember-default",
"test:all": "pnpm --filter test-app test:all",
"test:test-app": "pnpm --filter test-app test:one",
"test:watch": "concurrently \"pnpm test:watch:test-app\" \"pnpm test:watch:addon\"",
"test:watch:addon": "pnpm --filter ember-cookies start",
"test:watch:test-app": "pnpm --filter test-app test:watch"
},
"devDependencies": {
"concurrently": "9.1.2",
"release-plan": "0.11.0"
},
"packageManager": "[email protected]",
"volta": {
"node": "22.13.1",
"pnpm": "9.11.0"
}
}