-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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": "swirly",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"test": "yarn run lint",
"lint": "yarn run lint:js && yarn run lint:deps",
"lint:js": "eslint \"**/*.{js,ts}\"",
"lint:deps": "polydepcheck",
"deps": "depviz -o dependencies.png",
"format": "prettier-eslint --write \"**/*.{js,ts}\"",
"publish": "lerna publish --concurrency=1",
"prepare": "husky install"
},
"devDependencies": {
"@timdp/depviz": "^0.5.0",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
"depcheck": "^1.4.0",
"eslint": "^8.19.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"fs-extra": "^11.1.0",
"husky": "^8.0.1",
"lerna": "^6.5.1",
"lint-staged": "^13.0.3",
"polydepcheck": "^0.2.3",
"prettier-eslint-cli": "^7.1.0",
"turbo": "1.8.1",
"typescript": "^5.0.0-beta"
},
"workspaces": [
"packages/*"
]
}