-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 862 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
31
32
33
34
{
"name": "media-tools",
"private": true,
"version": "0.0.0",
"description": "Root package to handle all media-tools packages",
"type": "module",
"scripts": {
"lint": "eslint . --quiet --ignore-path .gitignore",
"test": "wsrun --report -msc test",
"clean": "wsrun --report -mc clean",
"release": "changeset publish",
"prepare": "husky",
"build": "npm run clean && wsrun --report -msc build"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.js": [
"eslint --fix --quiet"
]
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"wsrun": "^5.2.4"
}
}