-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.56 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.56 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
46
47
48
49
50
51
{
"name": "@fiverr-private/drag_n_drop",
"version": "1.0.4",
"description": "React drag and drop component",
"main": "dist/index.js",
"scripts": {
"prepare": "git submodule update --init",
"build": "npm run clean && npm run build-js && npm run build-sass",
"build-js": "babel src --out-dir dist",
"build-sass": "node-sass src/ -o dist/ ",
"clean": "./node_modules/rimraf/bin.js dist",
"prepublishOnly": "npm run build",
"eslint": "./node_modules/eslint/bin/eslint.js -c .eslintrc ./src/**/*.js --ignore-path .eslintignore --quiet",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git://github.com/fiverr/drag_n_drop_package.git"
},
"author": "Asaf David <asaf.d@fiverr.com>",
"license": "ISC",
"dependencies": {
"react-dragula": "^1.1.17",
"rimraf": "^2.6.1"
},
"peerDependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1"
},
"devDependencies": {
"@fiverr/eslint-config-fiverr": "^0.0.13",
"@kadira/storybook": "^2.21.0",
"babel-cli": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"lodash": "^4.17.15",
"node-sass": "^4.5.2",
"raw-loader": "^0.5.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.17.0",
"webpack": "^2.4.1"
}
}