-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
42 lines (42 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
42
{
"name": "mf-lite",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"main": "index.js",
"license": "MIT",
"scripts": {
"lint": "eslint --ext .ts --max-warnings 0 ./",
"test": "jest --no-cache",
"build-all": "pnpm -r build",
"clean-all": "lerna clean",
"publish-all": "pnpm clean-all && pnpm i && pnpm build-all && lerna publish --no-push"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.4.6",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"concurrently": "^6.3.0",
"eslint": "^7.31.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"fs-extra": "^10.0.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}