forked from ethereum-optimism/ecosystem
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.02 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
{
"name": "ecosystem",
"author": "Optimism PBC",
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"pnpm": "^9.0.0",
"node": "^18.0.0"
},
"nx": {},
"scripts": {
"clean": "pnpm recursive run clean",
"create:app": "cd apps && pnpm create vite --template=react-ts ",
"create:react:library": "cd packages && pnpm create vite --template=react-ts ",
"release:publish": "pnpm install --frozen-lockfile && pnpm nx run-many --target=build && changeset publish",
"release:version": "changeset version && pnpm install --lockfile-only",
"fetch:artifacts": "bash ./scripts/pull-contract-artifacts.sh"
},
"private": true,
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@nx/js": "17.1.3",
"@nx/plugin": "17.1.3",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.15",
"nx": "17.1.3"
},
"dependencies": {
"@changesets/cli": "^2.27.1"
}
}