forked from keep-starknet-strange/unruggable.meme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 803 Bytes
/
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
{
"name": "unruggable",
"private": true,
"version": "0.0.0",
"license": "MIT",
"scripts": {
"g:build": "turbo run build --concurrency=100%",
"g:start": "turbo run start --concurrency=100%",
"g:check:circular": "turbo run check:circular",
"g:lint": "turbo run lint",
"g:lint:fix": "turbo run lint:fix",
"g:test": "turbo run test",
"g:test:watch": "turbo run test:watch",
"g:prepare": "turbo run prepare",
"g:rm:nodemodules": "rm -rf node_modules"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"turbo": "^1.13.2"
},
"devDependencies": {
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5"
}
}