-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
{
"name": "react-hooks-drag-n-drop",
"version": "0.0.1",
"description": "React Hooks Drag & Drop to sort cats",
"main": "app/index.js",
"scripts": {
"start": "webpack-dev-server",
"build": "NODE_ENV='production' webpack",
"build-for-windows": "SET NODE_ENV='production' && webpack"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"syntax-dynamic-import"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/taco-tues-on-a-fri/react-hooks-drag-n-drop"
},
"keywords": [],
"author": "taco-tues-on-a-fri",
"license": "ISC",
"bugs": {
"url": "https://github.com/taco-tues-on-a-fri/react-hooks-drag-n-drop/issues"
},
"homepage": "https://github.com/taco-tues-on-a-fri/react-hooks-drag-n-drop#readme",
"dependencies": {
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.18.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"styled-components": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.2.0",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"serialize-javascript": ">=2.1.1",
"style-loader": "^1.0.0",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
}
}