-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
97 lines (97 loc) · 2.76 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
{
"name": "@gridsheet/react-core",
"version": "1.3.0-alpha.3",
"description": "Spreadsheet component for React",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"build": "rm -rf ./dist || true && tsc --project ./src/index.ts -p ./tsconfig.json",
"audit-fix": "yarn-audit-fix --force",
"storybook": "start-storybook -p 5233",
"build-storybook": "build-storybook",
"less": "lessc --clean-css ./src/styles/root.less ./src/styles/root.min.css",
"generate-style": "node ./generate-style.js",
"playwright": "npx playwright test --ui",
"e2e": "cd e2e && npx playwright test -c playwright.config.ts --workers 6",
"jest": "jest",
"test": "yarn jest && yarn e2e",
"eslint": "eslint --ext .ts,.tsx src",
"prettier": "prettier --write \"src/**/*.{ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/walkframe/gridsheet.git"
},
"keywords": [
"spreadsheet",
"spread-sheet",
"excel"
],
"author": "righ",
"license": "Apache-2.0",
"files": [
"dist/",
"package.json",
"README.md",
"LICENSE"
],
"bugs": {
"url": "https://github.com/walkframe/gridsheet/issues"
},
"homepage": "https://docs.walkframe.com/gridsheet/react",
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@playwright/test": "^1.41.1",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/react": "^6.5.12",
"@types/date-fns": "^2.6.0",
"@types/jest": "^29.4.0",
"@types/react": "^16.9.24",
"@types/react-dom": "^16.9.24",
"@types/storybook__react": "^5.2.1",
"@typescript-eslint/parser": "^4.14.2",
"babel-loader": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"less": "^4.1.3",
"less-plugin-clean-css": "^1.5.1",
"playwright": "^1.41.1",
"prettier": "^3.2.5",
"react": ">=16.9.0",
"react-dom": ">=16.9.0",
"react-is": "^16.13.1",
"require-context.macro": "^1.2.2",
"storybook": "^6.5.12",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.0.3",
"typescript-eslint": "^7.0.2",
"webpack-cli": "^4.7.0",
"yarn-audit-fix": "^9.3.6"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"dependencies": {
"dayjs": "^1.11.13"
},
"resolutions": {
"trim": "^0.0.3",
"trim-newlines": "^3.0.1",
"got": "^11.8.5",
"glob-parent": "^5.1.2"
},
"publishConfig": {
"access": "public"
}
}