forked from anthony-redFox/grid-layout-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.08 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
{
"name": "grid-layout-component",
"version": "0.2.1",
"description": "A draggable and resizable grid layout with responsive breakpoints.",
"main": "dist/grid-layout-component.min.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --ext .js,.jsx && prettier --check ./**.{json,js,yml,md,ts}",
"test": "jest --coverage",
"test-update": "jest --updateSnapshot",
"watch": "jest --watch",
"build": "webpack",
"build-example": "webpack --config webpack-examples.config.js && node ./examples/generate.js",
"view-example": "node ./examples/generate.js && webpack serve --config webpack-examples.config.js --progress",
"dev": "webpack serve --config webpack-dev-server.config.js --hot --progress",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "git@github.com:anthony-redFox/grid-layout-component.git"
},
"keywords": [
"grid",
"drag",
"draggable",
"resize",
"resizable",
"fluid",
"responsive"
],
"author": "Anton Shchekota <anton.redfox@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/anthony-redFox/grid-layout-component/issues"
},
"homepage": "https://github.com/anthony-redFox/grid-layout-component",
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@webpack-cli/serve": "^1.6.1",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"construct-style-sheets-polyfill": "^3.1.0",
"css-loader": "^6.6.0",
"dts-bundle-webpack": "^1.0.2",
"ejs": "^3.1.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.8.0",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-unicorn": "^40.1.0",
"exports-loader": "^3.1.0",
"husky": "^7.0.4",
"imports-loader": "^3.1.1",
"jest": "^27.5.1",
"lint-staged": "^12.3.3",
"lodash": "^4.17.21",
"opener": "^1.5.2",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-transform-hmr": "^1.0.4",
"resize-observer-polyfill": "^1.5.1",
"style-loader": "^3.3.1",
"timsort": "^0.3.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>test/util/setupTests.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testMatch": [
"<rootDir>/test/spec/utils-test.js",
"<rootDir>/test/spec/**/*spec.js"
],
"testEnvironment": "jsdom",
"testURL": "http://localhost"
},
"prettier": {
"trailingComma": "none",
"endOfLine": "auto"
},
"lint-staged": {
"*.{js,jsx,css,ts,tsx}": [
"eslint --ext .js,.jsx,.ts,.tsx --fix",
"prettier --write"
]
}
}