-
Notifications
You must be signed in to change notification settings - Fork 199
/
package.json
34 lines (34 loc) · 990 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
24
25
26
27
28
29
30
31
32
33
34
{
"name": "liquid-fire",
"version": "0.0.0",
"private": true,
"repository": "https://github.com/ember-animation/liquid-fire",
"license": "MIT",
"author": "Edward Faulkner <[email protected]>",
"scripts": {
"build": "pnpm run --filter liquid-fire build",
"build:docs": "pnpm run --filter docs build",
"lint": "pnpm run --filter '*' lint",
"lint:fix": "pnpm run --filter '*' lint:fix",
"start": "concurrently 'pnpm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:addon": "pnpm run --filter liquid-fire start --no-watch.clearScreen",
"start:docs": "pnpm run --filter docs start --preserveWatchOutput",
"start:test-app": "pnpm run --filter test-app start"
},
"devDependencies": {
"concurrently": "^7.2.1",
"prettier": "^2.5.1"
},
"workspaces": [
"liquid-fire",
"docs",
"test-app"
],
"volta": {
"node": "16.19.0",
"yarn": "1.22.10"
},
"engines": {
"node": "16.* || >= 18"
}
}