-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.25 KB
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
{
"name": "react-draggable-ts",
"version": "1.0.0",
"description": "A simple draggable react component. Typescript version of react-draggable.",
"main": "intdex.js",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc && cp package.json README.md ./dist",
"dev": "webpack serve --hot --progress --mode development",
"watch": "tsc -w"
},
"keywords": [
"react",
"resizable",
"react-component"
],
"author": "Nechita Dinu-Andrei",
"repository": {
"type": "git",
"url": "git+https://github.com/Andynopol/react-draggable-ts.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Andynopol/react-draggable-ts/issues"
},
"homepage": "https://github.com/Andynopol/react-draggable-ts#readme",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@types/react": "^18.2.9",
"@types/react-dom": "^18.2.4",
"babel-loader": "^8.2.5",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-loader": "^9.4.3",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@types/node": "^20.2.6",
"clsx": "^1.2.1"
}
}