forked from asseinfo/react-kanban
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.75 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
{
"name": "@asseinfo/react-kanban",
"version": "2.1.0",
"description": "Yet another Kanban/Trello board lib for React.",
"main": "dist/index.js",
"files": [
"dist/index.js",
"dist/styles.css"
],
"repository": "https://github.com/asseinfo/react-kanban",
"author": "Leandro Lourenci",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/eslint-parser": "7.12.1",
"@babel/plugin-proposal-optional-chaining": "7.11.0",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.4",
"@cypress/code-coverage": "3.8.2",
"@testing-library/jest-dom": "5.11.5",
"@testing-library/react": "10.4.9",
"@typescript-eslint/eslint-plugin": "4.6.0",
"@typescript-eslint/parser": "4.6.0",
"babel-loader": "8.1.0",
"babel-plugin-istanbul": "6.0.0",
"babel-plugin-react-remove-properties": "0.3.0",
"cross-env": "7.0.2",
"css-loader": "3.5.3",
"cypress": "4.12.1",
"eslint": "7.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-standard": "14.1.1",
"eslint-config-standard-react": "9.2.0",
"eslint-plugin-cypress": "2.11.2",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jest": "23.13.2",
"eslint-plugin-jest-dom": "2.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.0.8",
"eslint-plugin-standard": "4.0.2",
"eslint-plugin-testing-library": "3.2.0",
"html-webpack-plugin": "4.3.0",
"identity-obj-proxy": "3.0.0",
"istanbul-lib-coverage": "3.0.0",
"jest": "26.4.2",
"jest-circus": "26.4.2",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.14.1",
"prettier": "2.0.5",
"react": "17.0.1",
"react-dom": "17.0.1",
"sass-loader": "8.0.2",
"semantic-release": "17.0.8",
"start-server-and-test": "1.11.5",
"ts-loader": "8.0.6",
"typescript": "4.0.5",
"webpack": "4.44.2",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0"
},
"scripts": {
"prepublishOnly": "rm -rf dist/ && NODE_ENV=production webpack --config webpack.prod.js",
"server": "webpack-dev-server --config webpack.dev.js",
"test": "jest",
"jest:watch": "jest --no-coverage --watch --runInBand --notify --notifyMode always",
"lint": "eslint 'src/**/*.{js,ts,tsx}' 'cypress/**/*.js'",
"contributors:add": "all-contributors add",
"start": "webpack-dev-server --open --config webpack.dev.js",
"cypress": "cypress",
"dev": "cross-env NODE_ENV=cypress start-test server 8080 'cypress open'"
},
"dependencies": {
"react-beautiful-dnd": "^13.0.0"
}
}