This repository has been archived by the owner on Jun 25, 2024. It is now read-only.
forked from mynearwallet/my-near-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.52 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
{
"name": "@near-wallet/monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "yarn install --frozen-lockfile && eslint .",
"pre-build": "cd packages/frontend && yarn install --frozen-lockfile && yarn pre-build",
"build": "cd packages/frontend && yarn install --frozen-lockfile && yarn build",
"storybook": "cd packages/frontend && yarn storybook",
"test": "cd packages/frontend && yarn install --frozen-lockfile && yarn test",
"dev": "cd packages/frontend && yarn install --frozen-lockfile && yarn dev",
"dev:mainnet": "cd packages/frontend && yarn install --frozen-lockfile && yarn dev:mainnet",
"guestbook": "cd packages/guestbook && yarn install --frozen-lockfile && yarn dev",
"test:e2e": "cd packages/e2e-tests && yarn e2e",
"prepare": "husky install",
"release": "lerna version --conventional-commits"
},
"devDependencies": {
"@commitlint/cli": "^17.6.0",
"@commitlint/config-conventional": "^17.6.0",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"assert": "^2.0.0",
"crypto-browserify": "^3.12.0",
"https-browserify": "^1.0.0",
"husky": "^8.0.3",
"lerna": "^6.6.1",
"lint-staged": "^13.2.1",
"path-browserify": "^1.0.0",
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.1.0",
"string_decoder": "^1.3.0",
"url": "^0.11.0",
"util": "^0.12.3"
},
"resolutions": {
"node-gyp": "9.3.1"
}
}