-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 1.04 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
{
"name": "root",
"private": true,
"repository": "https://github.com/theemo-tokens/theemo",
"scripts": {
"clean": "concurrently 'npm:clean:*'",
"clean:dist": "find . -not \\( -path './node_modules' -type d -prune \\) -name 'dist' -type d -exec rm -rf '{}' +",
"clean:node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"clean:turbo": "find . -name '.turbo' -type d -prune -exec rm -rf '{}' +",
"_api": "pnpm run --filter theemo api",
"lint": "pnpm --filter '@theemo/*' lint",
"start": "turbo run --filter '@theemo/*' start",
"build": "turbo run --filter '@theemo/*' build",
"test": "vitest run",
"test:dev": "vitest --ui"
},
"devDependencies": {
"@release-it-plugins/lerna-changelog": "^6.0.0",
"@release-it-plugins/workspaces": "^4.0.0",
"@vitest/coverage-v8": "^0.34.5",
"@vitest/ui": "^0.34.5",
"concurrently": "^8.2.0",
"release-it": "^16.1.5",
"turbo": "^1.10.14",
"vitest": "^0.34.5"
},
"volta": {
"node": "20.7.0"
},
"version": "0.2.0"
}