-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
109 lines (109 loc) · 3.13 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "react-easy-sort",
"version": "1.6.0",
"description": "A React component to sort items in lists or grids",
"homepage": "https://ValentinH.github.io/react-easy-sort/",
"keywords": [
"react",
"sort",
"sortable",
"sortable grid",
"sortable list"
],
"repository": {
"type": "git",
"url": "https://github.com/ValentinH/react-easy-sort"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=16"
},
"author": "Valentin Hervieu",
"license": "MIT",
"sideEffects": false,
"scripts": {
"start": "yarn storybook",
"version": "yarn && yarn build",
"build": "yarn-or-npm bili && yarn-or-npm build:copy-files",
"test": "yarn-or-npm unit && yarn-or-npm lint && yarn-or-npm lint:ts",
"unit": "jest src",
"unit:watch": "jest --watchAll src",
"lint": "eslint --ext .ts,.tsx ./src",
"lint:ts": "tsc --noEmit",
"prebuild": "rimraf dist",
"build:copy-files": "babel-node ./scripts/copy-build-files.js",
"prepublishOnly": "yarn-or-npm build",
"precommit": "lint-staged",
"format": "prettier --write src/**/*.ts* stories/**/*.ts*",
"npm:publish": "np --contents=dist",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o ./docs"
},
"peerDependencies": {
"react": ">=16.4.0",
"react-dom": ">=16.4.0"
},
"dependencies": {
"array-move": "^3.0.1",
"tslib": "2.0.1"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/node": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/react": "^6.3.8",
"@types/jest": "^26.0.14",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "4.2.0",
"@typescript-eslint/parser": "4.2.0",
"all-contributors-cli": "^6.4.0",
"babel-eslint": "10.x",
"babel-loader": "^8.0.5",
"bili": "^5.0.5",
"css-loader": "^4.3.0",
"eslint": "7.9.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-react-app": "^5.1.0",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "4.1.2",
"jest": "26.4.2",
"lint-staged": "^10.4.0",
"np": "^8.0.4",
"prettier": "^2.1.2",
"query-string": "^6.1.0",
"raw-loader": "^4.0.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"rimraf": "^3.0.0",
"rollup-plugin-typescript2": "^0.27.1",
"start-server-and-test": "^1.4.1",
"style-loader": "^1.2.1",
"ts-jest": "^26.4.0",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"yarn-or-npm": "^3.0.1"
},
"lint-staged": {
"*.+(ts|tsx|js|css)": [
"prettier --write",
"git add"
]
},
"jest": {
"preset": "ts-jest"
}
}