-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.34 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "tubular-fabric",
"version": "3.13.0",
"description": "Unosquare Tubular for Fabric",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "webpack serve",
"check": "npm run build && npm test",
"lint": "tsc --noEmit && eslint **/*.{ts,tsx} --quiet",
"lint:fix": "eslint **/*.{ts,tsx} --quiet --fix",
"prettier": "prettier --check **/*.ts*",
"prettier:fix": "prettier --write **/*.ts*",
"codestyle:fix": "npm run lint:fix && npm run prettier:fix",
"test": "jest",
"cest": "jest --coverage"
},
"prettier": {
"endOfLine": "auto",
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"jsxSingleQuote": true,
"printWidth": 120,
"tabWidth": 4
},
"repository": {
"type": "git",
"url": "git+https://github.com/unosquare/tubular-fabric.git"
},
"author": "Unosquare",
"license": "MIT",
"bugs": {
"url": "https://github.com/unosquare/tubular-fabric/issues"
},
"homepage": "https://github.com/unosquare/tubular-fabric#readme",
"dependencies": {
"@fluentui/react": "8.120.3",
"tubular-common": "7.0.2",
"tubular-react-common": "3.0.15"
},
"peerDependencies": {
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.11",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.2.1",
"ts-jest": "^29.2.4",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"files": [
"dist"
]
}