-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.82 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.82 KB
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
{
"name": "@try-at-software/input-elements",
"version": "1.2.9",
"description": "A package providing different input elements that are extensible and easily configurable for your custom needs.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start-dev": "npm run lint && webpack serve --mode development --open",
"lint": ".\\node_modules\\.bin\\eslint \"./src/**/*.{js,jsx,ts,tsx}\" && prettier --check \"src/**/*.{ts,tsx,js,jsx,css,less,json}\"",
"fix-code-style": "prettier --write \"src/**/*.{ts,tsx,js,jsx,css,less,json}\"",
"test": "jest",
"build": "npm run clean && npm run compile && npm run copy-styles",
"clean": "rimraf lib",
"compile": "tsc",
"copy-styles": "copyfiles --up 1 src/**/*.less -e **/__samples__/** lib",
"preversion": "npm run lint",
"postversion": "git push --tags",
"refresh": "npm run unlink-dev-package && npm run link-dev-package",
"link-dev-package": "npm link && npm link @try-at-software/input-elements",
"unlink-dev-package": "npm unlink --no-save @try-at-software/input-elements && npm unlink"
},
"repository": {
"type": "git",
"url": "https://github.com/TryAtSoftware/InputElements"
},
"homepage": "https://github.com/TryAtSoftware/InputElements",
"files": [
"lib/**/*"
],
"keywords": [
"input",
"input-element",
"form",
"validation"
],
"author": "Tony Troeff",
"license": "MIT",
"devDependencies": {
"@testing-library/react": "12.1.4",
"@types/enzyme": "3.10.12",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/jest": "27.4.1",
"@types/react": "16.9.0",
"@types/react-beautiful-dnd": "13.1.2",
"@types/react-dom": "16.9.0",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"copyfiles": "2.4.1",
"css-loader": "6.7.1",
"eslint": "8.13.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"html-webpack-plugin": "5.5.0",
"jest": "27.5.1",
"jest-each": "27.5.1",
"less": "4.1.2",
"less-loader": "10.2.0",
"@fluentui/react": "8.41.0",
"prettier": "2.6.2",
"react": "16.9.0",
"react-dom": "16.9.0",
"rimraf": "3.0.2",
"style-loader": "3.3.1",
"ts-jest": "27.1.4",
"ts-loader": "9.2.8",
"typescript": "4.3.2",
"webpack": "5.76.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.8.1"
},
"dependencies": {
"react-beautiful-dnd": "13.1.0"
},
"peerDependencies": {
"@fluentui/react": ">=7.179.1",
"react": ">=16.9.0"
}
}