-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.27 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
76
77
78
79
80
81
82
83
{
"name": "ampel-ui",
"version": "0.24.12",
"description": "Ampel UI is a UI component framework written for TypeScript + React",
"main": "./dist/bundle.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"build": "webpack -p --optimize-minimize",
"test": "jest --config jestconfig.json --coverage",
"test:watch": "jest --watch --config jestconfig.json",
"prepublish": "rm -rf ./dist && npm run build",
"lint": "tslint-config-prettier-check ./tslint.json",
"prettier": "prettier --write \"src/**/*.{ts,tsx}\""
},
"repository": {
"type": "git",
"url": "https://github.com/Webtrekk/Ampel-UI"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run prettier",
"git add"
]
},
"author": "Webtrekk GmbH",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"autoprefixer": "^9.8.6",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^2.1.1",
"dom-testing-library": "^3.17.1",
"husky": "^2.5.0",
"jest": "^26.4.0",
"less": "^3.12.2",
"less-loader": "^4.1.0",
"lint-staged": "^10.2.11",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-testing-library": "^6.0.0",
"style-loader": "^0.23.1",
"ts-jest": "^26.2.0",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^3.6.0",
"tslint-react-a11y": "^1.0.0",
"typescript": "^3.9.7",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"peerDependencies": {
"react": "^15.3.0 || 16",
"react-dom": "^15.3.0 || 16"
},
"dependencies": {
"@types/lodash": "4.14.159",
"@types/rc-slider": "8.6.3",
"@types/react": "^16.9.46",
"@types/react-table": "~6.7.15",
"@types/yup": "~0.26.37",
"immutability-helper": "~3.0.2",
"lodash": "4.17.21",
"rc-slider": "8.6.7",
"react-popper-tooltip": "^2.10.1",
"react-table": "~6.8.6",
"yup": "~0.27.0"
},
"resolutions": {
"@types/react": "^16.8.8"
}
}