-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1019 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
35
36
37
38
{
"name": "pixiedust-turborepo",
"version": "1.0.0",
"scripts": {
"commit": "cz",
"prepare": "husky install",
"build": "turbo run build",
"dev": "dotenv $(printf -- '-e %s ' $(find . -type f -name '.env.local')) -- turbo run dev",
"test": "turbo run test",
"docker:build": "docker build -t pixiedust .",
"docker:run": "docker run -p 3000:3000 pixiedust",
"docker:explore": "docker run --rm -it --entrypoint=/bin/bash pixiedust",
"generate:applet": "turbo gen applet"
},
"workspaces": [
"apps/*",
"firmware",
"pixiedust",
"pixiedust-applets/*"
],
"nohoist": [
"**/@types/**"
],
"private": true,
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@commitlint/cz-commitlint": "^18.4.4",
"commitizen": "^4.3.0",
"dotenv-cli": "^7.3.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.3",
"turbo": "^1.10.14"
},
"dependencies": {
"@turbo/gen": "^1.11.3"
}
}