-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
102 lines (102 loc) · 2.92 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
{
"name": "react-sortful",
"version": "0.1.1",
"description": "Sortable components for horizontal and vertical, nested, and tree forms.",
"keywords": [
"React",
"drag",
"dnd",
"sort",
"arrange",
"nest",
"tree"
],
"homepage": "https://github.com/jagaapple/react-sortful",
"bugs": "https://github.com/jagaapple/react-sortful/issues",
"license": "MIT",
"author": "Jaga Apple",
"contributors": [],
"files": [
"lib",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"LICENSE",
"package.json",
"README.md"
],
"main": "lib/index.js",
"bin": "",
"man": "",
"repository": {
"type": "git",
"url": "https://github.com/jagaapple/react-sortful.git"
},
"scripts": {
"prebuild": "rm -rf ./lib",
"build": "tsc --project \"./tsconfig.build.json\"",
"lint": "tsc --noEmit && eslint \"./**/*.ts\" \"./**/*.tsx\" && stylelint \"./stories/**/*.css\"",
"fix:ts": "eslint --fix \"./**/*.ts\" \"./**/*.tsx\"",
"fix:css": "stylelint \"./stories/**/*.css\" --fix",
"tcm": "tcm \"./stories\"",
"prepublishOnly": "npm run build",
"test": "jest --coverage",
"coverage": "codecov",
"clean": "rm -rf ./lib ./coverage",
"storybook": "start-storybook --port 5000",
"build-storybook": "build-storybook --config-dir ./.storybook --output-dir ./.out",
"chromatic": "CHROMATIC_APP_CODE=kmmyjbiwtyq chromatic --auto-accept-changes"
},
"config": {},
"dependencies": {
"react-use-gesture": "^7.0.4"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@storybook/addon-backgrounds": "^5.3.14",
"@storybook/addon-storysource": "^5.3.14",
"@storybook/react": "^5.3.14",
"@types/classnames": "^2.2.9",
"@types/jest": "^25.1.3",
"@types/jest-plugin-context": "^2.9.2",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/sinon": "^7.5.2",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"array-move": "^2.2.1",
"babel-loader": "^8.0.6",
"classnames": "^2.2.6",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"jest": "^25.1.0",
"jest-plugin-context": "^2.9.0",
"prettier": "^1.19.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"sinon": "^9.0.1",
"storybook-chromatic": "^3.5.2",
"stylelint": "^13.2.1",
"stylelint-order": "^4.0.0",
"stylelint-prettier": "^1.1.2",
"ts-jest": "^25.2.1",
"typed-css-modules": "^0.6.3",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"engines": {
"node": ">=10.0.0"
},
"engineStrict": false,
"preferGlobal": false,
"private": false
}