-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
76 lines (76 loc) · 2.52 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
{
"name": "@caldwell619/react-kanban",
"version": "0.0.11",
"description": "(fork of) Yet another Kanban/Trello board lib for React",
"scripts": {
"lint": "eslint --ext .ts,.tsx src",
"format": "prettier --write src",
"type-check": "tsc --noEmit -p tsconfig.build.json",
"build": "sh scripts/build.sh",
"build:watch": "nodemon --exec yarn build --watch src --ext .tsx,.ts --delay 2.5",
"publish:version": "sh scripts/publish.sh",
"predeploy": "cd demo && yarn install && yarn run build",
"deploy": "gh-pages -d demo/dist",
"test": "echo 'No tests yet'",
"test:watch": "jest --no-coverage --watch --runInBand --notify --notifyMode always"
},
"main": "dist/index.js",
"files": [
"dist"
],
"repository": "https://github.com/christopher-caldwell/react-kanban",
"license": "MIT",
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16",
"@hello-pangea/dnd": ">=16"
},
"homepage": "https://christopher-caldwell.github.io/react-kanban",
"devDependencies": {
"@cypress/code-coverage": "3.8.2",
"@hello-pangea/dnd": "^16.0.1",
"@testing-library/jest-dom": "5.11.5",
"@testing-library/react": "10.4.9",
"@types/jest": "^29.1.1",
"@types/react": "^18.0.21",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"all-contributors-cli": "^6.22.0",
"cross-env": "7.0.2",
"css-loader": "3.5.3",
"cypress": "4.12.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "2.11.2",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jest": "23.13.2",
"eslint-plugin-jest-dom": "2.1.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-testing-library": "3.2.0",
"gh-pages": "^4.0.0",
"identity-obj-proxy": "3.0.0",
"istanbul-lib-coverage": "3.0.0",
"jest": "^29.1.2",
"jest-circus": "26.4.2",
"nodemon": "^2.0.20",
"prettier": "2.0.5",
"react": "17.0.1",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "17.0.1",
"sass": "^1.55.0",
"standard-version": "^9.5.0",
"start-server-and-test": "1.11.5",
"ts-jest": "^29.0.3",
"ts-loader": "8.0.6",
"ts-node": "^10.9.1",
"tscpaths": "^0.0.9",
"typescript": "4.4.4"
}
}