-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathpackage.json
80 lines (80 loc) · 2.51 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
{
"name": "react-nestable",
"version": "3.0.2",
"description": "Drag & drop hierarchical list made as a react component",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "primetwig",
"license": "ISC",
"scripts": {
"prestart": "npm run build",
"start": "webpack serve --port 8888",
"eslint": "eslint ./src/**/*.{ts,tsx}",
"clean": "rimraf ./dist",
"compile:example": "webpack-cli --color --progress",
"compile:css": "stylus ./src/styles/index.styl --use ./node_modules/nib/lib/nib",
"watch:css": "npm run compile:css -- -w",
"prebuild": "npm run eslint && npm run clean && mkdir dist",
"build": "npm run build:scripts && npm run build:html && npm run build:css && npm run build:images",
"build:scripts": "tsc",
"build:html": "cpy './**/*.html' '../dist/' --cwd=src",
"build:css": "npm run compile:css && cpy './**/*.css' '../dist/' --cwd=src",
"build:images": "cpy './**/*.svg' '../dist/' --cwd=src",
"postbuild": "npm run compile:example",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/react": "^18.2.20",
"@types/react-addons-shallow-compare": "^0.14.22",
"@types/react-addons-update": "^0.14.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/parser": "^6.6.0",
"cpy": "^10.1.0",
"cpy-cli": "^5.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.47.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-standard": "^5.0.0",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"ignore-loader": "^0.1.2",
"nib": "^1.2.0",
"postcss": "^8.4.28",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.1.1",
"rimraf": "^5.0.1",
"style-loader": "^3.3.3",
"stylus": "^0.59.0",
"stylus-loader": "^7.1.3",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"url-loader": "^4.1.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"yargs": "^17.7.2"
},
"dependencies": {
"classnames": "^2.3.2",
"react": "^18.2.0",
"react-addons-shallow-compare": "^15.6.3",
"react-addons-update": "^15.6.3",
"react-dom": "^18.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/primetwig/react-nestable"
},
"keywords": [
"react",
"nestable",
"react-nestable",
"sortable",
"dragndrop",
"draggable"
]
}