-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
102 lines (102 loc) · 2.99 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": "grid-layout-component",
"version": "0.3.3",
"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.23.5",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@webpack-cli/serve": "^2.0.5",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"construct-style-sheets-polyfill": "^3.1.0",
"css-loader": "^6.8.1",
"dts-bundle-webpack": "^1.0.2",
"ejs": "^3.1.9",
"eslint": "^8.55.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-unicorn": "^40.1.0",
"exports-loader": "^4.0.0",
"husky": "^8.0.3",
"imports-loader": "^4.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"lodash": "^4.17.21",
"opener": "^1.5.2",
"prettier": "^3.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.1",
"react-transform-hmr": "^1.0.4",
"resize-observer-polyfill": "^1.5.1",
"style-loader": "^3.3.3",
"timsort": "^0.3.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>test/util/setupTests.js"
],
"testMatch": [
"<rootDir>/test/spec/utils-test.js",
"<rootDir>/test/spec/**/*spec.js"
],
"testEnvironment": "jsdom",
"testEnvironmentOptions": {
"url": "http://localhost"
}
},
"prettier": {
"trailingComma": "none",
"endOfLine": "auto"
},
"lint-staged": {
"*.{js,jsx,css,ts,tsx}": [
"eslint --ext .js,.jsx,.ts,.tsx --fix",
"prettier --write"
]
}
}