generated from owlprotocol/starter-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.13 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@owlprotocol/starter-monorepo",
"version": "2.0.1",
"private": true,
"description": "Owl Protocol Starter Monorepo",
"keywords": [
"pnpm",
"workspace"
],
"license": "MIT",
"author": "Leo Vigna",
"type": "module",
"scripts": {
"build": "turbo run build",
"build:force": "turbo run build --force",
"dev": "turbo run dev",
"start": "turbo run start",
"clean": "turbo run clean",
"clean:node_modules": "rimraf node_modules ./**/node_modules",
"test": "turbo run test",
"test:force": "turbo run test --force",
"test-integration": "turbo run test-integration",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"lint:staged": "turbo run lint:staged",
"depcheck": "depcheck && turbo run depcheck",
"madge": "turbo run madge",
"syncpack": "syncpack list-mismatches",
"syncpack:fix": "syncpack fix-mismatches",
"dotenv:login": "dotenv-vault login",
"dotenv:pull": "dotenv-vault pull",
"dotenv:push": "dotenv-vault push",
"husky:install": "husky install",
"publish": "changeset publish",
"act:build": "act -W .github/workflows/build.yml --env-file .env",
"turbo:login": "turbo login",
"turbo:link": "turbo link"
},
"dependencies": {
"next": "12.1.5"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@esbuild-plugins/node-resolve": "^0.1.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-refresh": "^0.4.3",
"esbuild": "^0.19.2",
"glob": "10.3.10",
"depcheck": "^1.4.7",
"dotenv": "^16.4.5",
"dotenv-vault": "1.25.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"syncpack": "^12.3.3",
"turbo": "^1.10.12"
},
"engines": {
"npm": ">=v10.5.0",
"pnpm": ">=9.0.0",
"node": "^18.0.0"
}
}