-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
68 lines (68 loc) · 1.81 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
{
"name": "react-jigsaw-puzzle",
"description": "Simple plug-and-play React component for jigsaw puzzles",
"version": "1.0.5",
"license": "GPL-3.0-only",
"author": {
"name": "Yuri Becker",
"email": "[email protected]",
"url": "https://yuri.li"
},
"repository": {
"type": "git",
"url": "https://github.com/yuri-becker/react-jigsaw-puzzle"
},
"keywords": [
"component",
"game",
"jigsaw",
"puzzle",
"react",
"react-component",
"tiles",
"tiling",
"tiling-puzzle"
],
"private": false,
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"scripts": {
"build": "rimraf ./lib && npm run lint && tsc --build ./tsconfig.json && cleancss -o ./lib/jigsaw-puzzle.css ./src/jigsaw-puzzle.css",
"lint": "eslint './src/**/*.{js,jsx,ts,tsx}'",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"devDependencies": {
"@storybook/addon-actions": "7.2.1",
"@storybook/addon-essentials": "7.2.1",
"@storybook/addon-links": "7.2.1",
"@storybook/preset-create-react-app": "7.2.1",
"@storybook/react": "7.2.1",
"@storybook/react-webpack5": "^7.2.1",
"@storybook/testing-library": "^0.2.0",
"@types/react": "18.2.19",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "6.3.0",
"@typescript-eslint/parser": "6.3.0",
"clean-css-cli": "5.6.2",
"eslint-config-standard": "17.1.0",
"eslint-plugin-filename-rules": "1.3.1",
"eslint-plugin-react": "7.33.1",
"eslint-plugin-storybook": "^0.6.13",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "5.0.1",
"rimraf": "5.0.1",
"storybook": "7.2.1",
"typescript": "4.9.5"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
}
}