-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.58 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": "tuuri-react",
"version": "0.0.1",
"description": "The layout engine for React.",
"main": "dist/tuuri-react.cjs.js",
"module": "dist/tuuri-react.esm.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run build:types && npm run build:js",
"test": "jest test",
"test:watch": "jest test --watch",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"eslint": "./node_modules/.bin/eslint src/**/*.{js,jsx,ts,tsx} test/**/*.{js,jsx,ts,tsx}",
"prettier": "./node_modules/.bin/prettier --write '**/*.{js,jsx,ts,tsx,md,mdx,json}'",
"prepublishOnly": "npm run type-check && npm run test && npm run prettier && npm run build"
},
"homepage": "https://paol-imi.github.io/muuri-react",
"repository": {
"type": "git",
"url": "git+https://github.com/Paol-imi/muuri-react.git"
},
"keywords": [
"tuuri",
"react",
"grid",
"layout",
"drag-and-drop",
"sorting",
"filter"
],
"author": "Paolo Longo <[email protected]>",
"license": "MIT",
"files": [
"/dist"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"@types/react": "^18.0.2",
"@types/react-reconciler": "^0.18.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@cfaester/enzyme-adapter-react-18": "~0.6.0",
"enzyme": "^3.11.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"jest": "^25.2.6",
"muuri": "^0.8.0",
"prettier": "^2.0.4",
"react": "^18.0.2",
"react-dom": "^18.0.2",
"rollup": "^2.3.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"muuri": ">=0.8.0",
"react": "^18.0.2"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"prop-types": "^15.7.2"
}
}