-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
94 lines (94 loc) · 3.77 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
{
"name": "@silevis/reactgrid",
"description": "Add spreadsheet-like behavior to your React app.",
"version": "4.1.10",
"homepage": "https://reactgrid.com",
"license": "MIT",
"author": "Silevis Software",
"repository": {
"type": "git",
"url": "https://github.com/silevis/reactgrid.git"
},
"keywords": [
"react",
"reactgrid",
"spreadsheet",
"datagrid",
"datatable"
],
"main": "core/reactgrid.js",
"module": "core/reactgrid.esm.js",
"types": "reactgrid.d.ts",
"devDependencies": {
"@cypress/snapshot": "^2.1.7",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/node": "^14.14.37",
"@types/react": "^17.0.60",
"@types/react-dom": "^17.0.20",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"cross-env": "^7.0.3",
"cypress": "^12.17.4",
"cypress-plugin-tab": "^1.0.5",
"eslint": "^7.23.0",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"git-branch-is": "^4.0.0",
"husky": "^4.3.7",
"npm-run-all": "^4.1.5",
"npm-version-suffix": "^0.2.0",
"ora": "^5.4.0",
"postcss": "^8.2.8",
"react-scripts": "5.0.1",
"react-select": "^5.7.3",
"rollup": "^2.43.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^2.0.1",
"rollup-plugin-node-externals": "^2.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0 || ^18.2.0",
"react-dom": "^16.13.1 || ^17.0.0 || ^18.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"pre-deploy": "npx rollup -c",
"deploy": "npm publish dist --access=public",
"eslint": "npx eslint ./src",
"test:cypress": "npx cypress open",
"run:all:tests": "npx cypress run --headless --quiet --browser firefox -s 'cypress/integration/tests/**/*.spec.ts'",
"run:all:tests:parallel": "run-p --print-label cy:**",
"cy:standard": "npx cypress run --headless --quiet --browser firefox -s 'cypress/integration/tests/standard/*'",
"cy:sticky": "npx cypress run --headless --quiet --browser firefox -s 'cypress/integration/tests/sticky/*'",
"cy:additionalContent": "npx cypress run --headless --quiet --browser firefox -s 'cypress/integration/tests/additionalContent/*'",
"cy:frozenFocus": "npx cypress run --headless --quiet --browser firefox -s 'cypress/integration/tests/frozenFocus/*'",
"cy:headerRow": "npx cypress run --headless --quiet --browser firefox -s 'cypress/integration/tests/headerRow/*'",
"cy:pinnedToBody": "npx cypress run --headless --quiet --browser firefox -s 'cypress/integration/tests/pinnedToBody/*'",
"cy:stickyPinnedToBody": "npx cypress run --headless --quiet --browser firefox -s 'cypress/integration/tests/stickyPinnedToBody/*'",
"cy:spannedCells": "npx cypress run --headless --quiet --browser firefox -s 'cypress/integration/tests/spannedCells/*'",
"cy:columnAndRowSelections": "npx cypress run --headless --quiet --browser firefox -s 'cypress/integration/tests/columnAndRowSelections/*'",
"cy:columnAndRowSelectionsWithSticky": "npx cypress run --headless --quiet --browser firefox -s 'cypress/integration/tests/columnAndRowSelectionsWithSticky/*'",
"remove-suffix": "cross-env SUFFIX=rc node ./node_modules/npm-version-suffix/run-remove-suffix.js"
},
"husky": {
"hooks": {
"pre-push": "if git-branch-is develop; then npx run-s eslint run:all:tests; fi"
}
},
"browserslist": [
">0.2%",
"not dead"
],
"dependencies": {
"sass": "^1.62.1",
"tslib": "^2.5.2"
}
}