-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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
{
"name": "mpcsnap",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"author": "Yann<[email protected]>",
"contributors": [
{
"name": "SafeheronRenzhao",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Safeheron/mpcsnap"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start:snap": "yarn workspace @safeheron/mpcsnap serve",
"start:example": "yarn workspace example dev",
"prestart": "yarn workspace @safeheron/mpcsnap-types run build",
"start": "concurrently --raw --kill-others \"yarn run start:snap\" \"yarn run start:example\"",
"test": "yarn workspaces foreach -vp run test",
"build": "yarn workspaces foreach -vpt run build"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"buffer": "^6.0.3",
"concurrently": "^7.2.2",
"eslint": "^8.18.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-webpack-plugin": "^3.2.0",
"jest": "^28.1.1",
"prettier": "^2.7.1",
"typescript": "^4.7.3"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.1.1",
"eslint-plugin-prettier": "^4.2.1"
},
"packageManager": "[email protected]"
}