-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.9 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"private": true,
"scripts": {
"build:lib": "npm run build:lib --workspaces",
"build:analize": "npm run build:analize --workspaces",
"watch:example": "npm run watch:example --workspaces",
"clean:lib": "npm run clean:lib --workspaces",
"clean:all": "npm run clean:all --workspaces && rimraf './node_modules'",
"check:lint": "npm run check:lint --workspaces",
"check:lint:fix": "npm run check:lint:fix --workspaces",
"check:test": "npm run check:test --workspaces",
"check:all": "npm run check:all --workspaces"
},
"workspaces": [
"./packages/rawmask",
"./packages/react-rawmask"
],
"devDependencies": {
"@babel/plugin-transform-typescript": "^7.18.12",
"@babel/preset-env": "^7.18.10",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^5.0.1",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-sonarjs": "^0.11.0",
"eslint-plugin-unicorn": "^40.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.77.2",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.8.0",
"terser": "^5.14.2",
"ts-jest": "^28.0.8",
"typescript": "^4.5.4"
}
}