-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.5 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
{
"name": "grid-draggable",
"version": "3.3.0",
"description": "Draggable grid system",
"author": {
"name": "chilijung",
"email": "chilijung@gmail.com"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"grid",
"drag",
"dnd",
"draggable"
],
"devDependencies": {
"antd": "^3.2.3",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.3",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.11.6",
"chai": "^3.5.0",
"cross-env": "^2.0.1",
"css-loader": "^0.28.10",
"enzyme": "^3.3.0",
"eslint": "^4.18.2",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-react": "^6.2.0",
"flow-bin": "^0.66.0",
"flow-copy-source": "^1.3.0",
"karma": "^1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-mocha": "^1.1.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^2.4.5",
"precommit-hook-eslint": "^3.0.0",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"react-motion": "^0.5.2",
"rimraf": "^2.5.4",
"style-loader": "^0.20.2",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.0"
},
"scripts": {
"lint": "eslint src test docs",
"clean": "rimraf lib dist",
"build:flow": "flow-copy-source -v -i '**/test/**' src lib",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build": "npm run build:commonjs && npm run build:flow",
"prepublish": "npm run clean && npm run check:src && npm run build",
"check:src": "npm run lint",
"test": "cross-env BABEL_ENV=test karma start --single-run",
"test:watch": "cross-env BABEL_ENV=test karma start",
"start": "./node_modules/.bin/webpack-dev-server --config webpack.config.dev.js --mode development",
"build:docs": "./node_modules/.bin/webpack --config webpack.config.prod.js --mode production",
"postpublish": "npm run build:docs",
"validate": "npm ls"
},
"pre-commit": [
"lint"
],
"repository": "Canner/grid-draggable",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || 16.x",
"react-dom": "^0.14.0 || ^15.0.0 || 16.x"
},
"license": "MIT",
"dependencies": {
"grid-breakpoint": "^1.7.0",
"lodash.pickby": "^4.6.0",
"react-draggable": "^3.0.5"
}
}