-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
88 lines (88 loc) · 2.69 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
87
88
{
"name": "react-sortable-pane",
"version": "1.0.4",
"title": "react-sortable-pane",
"main": "./lib/react-sortable-pane.es5.js",
"module": "./lib/react-sortable-pane.js",
"jsnext:main": "./lib/react-sortable-pane.js",
"description": "",
"types": "./lib/index.d.ts",
"keywords": [
"React"
],
"homepage": "",
"author": {
"name": "bokuweb"
},
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"engines": {
"npm": ">=3.0.0",
"node": ">=6.0.0"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.1.1",
"re-resizable": "4.7.1",
"react-motion": "^0.5.2",
"resize-observer-polyfill": "^1.5.0",
"tslib": "^1.9.2"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "2.0.1",
"@storybook/addon-info": "3.4.8",
"@storybook/addon-storysource": "3.4.8",
"@storybook/react": "3.4.8",
"@types/lodash": "4.14.110",
"@types/lodash.debounce": "4.0.3",
"@types/lodash.isequal": "4.5.2",
"@types/react": "16.4.6",
"@types/react-dom": "16.0.6",
"@types/react-motion": "0.0.26",
"@types/storybook__addon-actions": "3.0.3",
"@types/storybook__react": "3.0.8",
"babel-core": "6.26.3",
"concurrently": "3.6.0",
"cpx": "1.5.0",
"cpy-cli": "2.0.0",
"cypress": "3.0.2",
"gh-pages": "1.2.0",
"light-ts-loader": "1.1.2",
"npm-run-all": "4.1.3",
"prettier": "1.13.7",
"react": "16.7.0",
"react-dom": "16.7.0",
"rollup": "0.60.7",
"rollup-plugin-babel": "3.0.7",
"rollup-plugin-commonjs": "9.1.3",
"rollup-plugin-node-globals": "1.2.1",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-replace": "2.0.0",
"rollup-plugin-typescript2": "0.15.1",
"ts-loader": "4.4.2",
"typescript": "2.9.2",
"wait-on": "2.1.0"
},
"scripts": {
"build:prod:main": "rollup -c config/prod.js",
"build:prod:es5": "rollup -c config/prod.es5.js",
"build": "npm-run-all --serial build:prod:* copy:flow",
"start": "npm run storybook",
"copy:flow": "cpy src/react-sortable-pane.es5.js.flow lib && cpy src/react-sortable-pane.es5.js.flow lib --rename react-sortable-pane.js.flow",
"test": "concurrently 'npm run storybook' 'npm run cypress:test' -k -s first",
"storybook": "start-storybook -p 6096",
"cypress:test": "wait-on http-get://localhost:6096 && npm run cypress:run",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"build-storybook": "build-storybook",
"prepublish": "npm run build",
"format": "prettier-eslint --write --single-quote --semi=true \"src/**/*.js\" ",
"deploy": "npm run build-storybook && gh-pages -d storybook-static"
},
"files": [
"lib"
]
}