forked from Consensys/starknet-snap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.07 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": "starknet-snap",
"version": "0.1.0",
"main": "index.js",
"private": true,
"license": "(Apache-2.0 OR MIT)",
"repository": "https://github.com/ConsenSys/starknet-snap.git",
"workspaces": [
"packages/*"
],
"scripts": {
"allow-scripts": "yarn workspaces foreach --parallel --interlaced --verbose run allow-scripts",
"clean": "yarn workspaces foreach --parallel --interlaced --verbose run clean",
"build": "yarn workspaces foreach --parallel --interlaced --verbose run build",
"lint": "yarn workspaces foreach --parallel --interlaced --verbose run lint",
"start": "yarn workspaces foreach --parallel --interlaced --verbose run start",
"test": "yarn workspaces foreach --parallel --interlaced --verbose run test",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"husky": "^8.0.0"
},
"resolutions": {
"luxon@^3.2.1": "patch:luxon@npm%3A3.3.0#./.yarn/patches/luxon-npm-3.3.0-bdbae9bfd5.patch"
},
"engines": {
"node": ">=18.6.0"
}
}