-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
60 lines (60 loc) · 1.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
{
"name": "react-drag-and-dock",
"version": "0.2.1",
"description": "",
"main": "dist/main.js",
"browser": "dist/main.js",
"repository": {
"type": "git",
"url": "https://github.com/goodoldneon/react-drag-and-dock"
},
"scripts": {
"build": "webpack --mode production",
"test": "jest tests -o --watch",
"start": "concurrently \"npm run start:server\" \"npm run start:src-watch\"",
"start:server": "cd sandbox && PORT=3010 react-scripts start",
"start:src-watch": "cpx \"src/**/*.js\" \"sandbox/src/DragAndDock\" --watch"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/src/setupTests.js"
},
"dependencies": {
"lodash": "^4.17.11",
"prop-types": "^15.6.2",
"react-draggable": "^3.1.1",
"resize-observer-polyfill": "^1.5.1",
"styled-components": "^4.1.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^4.1.0",
"cpx": "^1.5.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.12.4",
"react": "^16.8.4",
"react-dev-utils": "^7.0.1",
"react-dom": "^16.8.4",
"react-scripts": "^2.1.8",
"sinon": "^7.2.7",
"webpack-cli": "^3.2.1"
},
"peerDependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"author": "Aaron Harper",
"license": "MIT"
}