-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
119 lines (119 loc) · 3.95 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "react-edit-list",
"version": "1.1.0",
"description": "Universal Editable List React Component",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"clean": "tsc --build --clean && rimraf docs",
"build": "npm run clean && npm run build:lib && npm run build:examples && npm run build:doc",
"build:lib": "tsc",
"build:examples": "webpack --mode=production --env production",
"build:doc": "documentation readme src/* --section=API --parse-extension=ts --parse-extension=tsx --require-extension=ts --require-extension=tsx --sort-order=source",
"dev": "webpack-cli serve --mode=development --env development --open",
"prod": "webpack-cli serve --mode=production --env production --open",
"publish": "node publish-ghpages.js",
"lint": "eslint './{examples,src}/**/*.{ts,tsx}'",
"lint:fix": "eslint './{examples,src}/**/*.{ts,tsx}' --fix",
"test": "jest",
"test:watch": "jest --watch",
"codecov": "curl -s https://codecov.io/bash | bash",
"preversion": "npm run test",
"version": "npm run clean && npm run build && git add package.json README.md",
"postversion": "git push && git push --tags && npm run publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmomtchev/react-edit-list.git"
},
"homepage": "https://mmomtchev.github.io/react-edit-list/",
"keywords": [
"react",
"edit",
"editable",
"editable-table",
"editable-list",
"editable-grid",
"list",
"listview",
"es6",
"js",
"typescript"
],
"author": "Momtchil Momtchev <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmomtchev/react-edit-list/issues"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "7.16.8",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@babel/runtime": "7.17.9",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^13.0.0",
"@types/date-fns": "^2.6.0",
"@types/jest": "^27.4.1",
"@types/node": "^14.14.25",
"@types/prismjs": "^1.16.3",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/webpack": "^4.41.26",
"@types/webpack-dev-server": "^3.11.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@typescript-eslint/typescript-estree": "^5.9.1",
"bootstrap": "^5.1.3",
"copyfiles": "^2.4.1",
"css-loader": "^5.0.1",
"date-fns": "^2.28.0",
"documentation": "^13.2.5",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.1.0",
"gh-pages": "^3.1.0",
"glob": "^7.1.6",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.0.0",
"jest": "^27.5.1",
"jest-canvas-mock": "^2.3.1",
"markdown-loader": "^7.0.0",
"null-loader": "^4.0.1",
"prettier": "2.6.2",
"prism-themes": "^1.6.0",
"prismjs": "^1.28.0",
"raw-loader": "^4.0.2",
"react": "^18.0.0",
"react-bootstrap": "^2.0.0",
"react-day-picker": "^8.0.4",
"react-docgen-typescript": "^2.1.0",
"react-dom": "^18.0.0",
"react-router": "^6.3.0",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^18.0.0",
"rimraf": "^3.0.2",
"sortablejs": "^1.15.0",
"style-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
"ts-jest": "^27.1.4",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.4.3",
"webpack": "^5.20.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.0.0"
}
}