-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
41 lines (41 loc) · 1.28 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
{
"name": "starknet-snap",
"version": "0.1.0",
"main": "index.js",
"private": true,
"license": "(Apache-2.0 OR MIT)",
"repository": {
"type": "git",
"url": "https://github.com/ConsenSys/starknet-snap.git"
},
"workspaces": [
"packages/*"
],
"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",
"lint:fix": "yarn workspaces foreach --parallel --interlaced --verbose run lint:fix",
"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",
"@lavamoat/allow-scripts": "^3.0.0",
"@lavamoat/preinstall-always-fail": "^2.0.0",
"husky": "^8.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.6.0"
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"sharp": true,
"@commitlint/cli>@commitlint/load>ts-node>@swc/core": false
}
}
}