forked from argentlabs/argent-x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"version": "0.1.0",
"private": true,
"name": "argent-x",
"repository": "github:argentlabs/argent-x",
"homepage": "https://github.com/argentlabs/argent-x/#readme",
"devDependencies": {
"bundlewatch": "^0.3.3",
"import-sort-style-module": "^6.0.0",
"lerna": "^5.0.0",
"prettier": ">=2",
"prettier-plugin-import-sort": "^0.0.7"
},
"workspaces": [
"packages/*"
],
"scripts": {
"format": "prettier --loglevel warn --write \"**/*.{js,jsx,ts,tsx,css,md,yml,json}\"",
"posttest": "npm run format",
"dev": "lerna run dev --parallel",
"clean": "rm -rf packages/extension/dist packages/get-starket/dist",
"build": "lerna run build",
"prepare": "lerna bootstrap && yarn --cwd packages/get-starknet build"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"bundlewatch": {
"files": [
{
"path": "packages/extension/dist/**/*.*",
"maxSize": "4mB",
"compression": "none"
}
]
},
"license": "GPLV3"
}