forked from oliviertassinari/react-swipeable-views
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.61 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
89
90
91
92
93
{
"name": "react-swipeable-views-workspace",
"version": "0.12.17",
"private": true,
"scripts": {
"lint": "eslint . && echo \"eslint: no lint errors\"",
"test": "echo \"ok\"",
"test:unit": "cross-env NODE_ENV=test mocha",
"test:watch": "yarn test:unit -w",
"test:coverage": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha && nyc report -r lcovonly",
"test:coverage:html": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha && nyc report --reporter=html",
"docs:dev": "rimraf node_modules/.cache/babel-loader && cross-env BABEL_ENV=docs-development next dev -p=8001",
"docs:build": "cross-env BABEL_ENV=docs-production next build",
"docs:export": "cross-env NODE_ENV=production BABEL_ENV=docs-production next export -o docs/export",
"docs:deploy": "yarn docs:build && yarn docs:export && firebase deploy",
"prettier": "find . -name \"*.js\" | grep -v -f .eslintignore | xargs prettier --write --single-quote --trailing-comma all --print-width 100",
"size": "size-limit",
"size:why": "size-limit --why packages/react-swipeable-views/lib/index.js",
"watch": "lerna exec --concurrency 99 -- babel src --out-dir lib --watch",
"build": "rm -rf packages/*/lib && cross-env NODE_ENV=production lerna exec -- babel --config-file ../../babel.config.js src --out-dir lib --ignore test.js",
"release": "yarn build && yarn lerna exec yarn prepublish && lerna publish",
"postrelease": "yarn docs:deploy"
},
"author": "Olivier Tassinari <[email protected]> (https://github.com/oliviertassinari)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oliviertassinari/react-swipeable-views.git"
},
"devDependencies": {
"@babel/cli": "7.0.0",
"@babel/core": "7.0.0",
"@babel/plugin-transform-object-assign": "7.0.0",
"@babel/plugin-transform-runtime": "7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-stage-1": "7.0.0",
"@babel/register": "7.0.0",
"@babel/runtime": "7.0.0",
"@material-ui/core": "^3.0.0",
"@material-ui/docs": "^1.0.0-alpha.3",
"@material-ui/icons": "^3.0.0",
"animated": "^0.2.1",
"autoprefixer": "^9.1.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-istanbul": "^5.0.1",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-preval": "^2.0.0",
"babel-plugin-react-remove-properties": "^0.2.5",
"babel-plugin-transform-dev-warning": "^0.1.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"chai": "^4.1.2",
"chai-shallow-deep-equal": "^1.4.6",
"clean-css": "^4.1.9",
"clipboard-copy": "^2.0.0",
"cross-env": "^5.1.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.5.1",
"glob": "^7.1.2",
"jsdom": "^12.0.0",
"lerna": "^3.2.1",
"lz-string": "^1.4.4",
"mocha": "^5.0.0",
"next": "^7.0.0-canary.5",
"nyc": "^13.0.0",
"postcss": "^7.0.2",
"prettier": "^1.8.2",
"prop-types": "^15.6.0",
"raw-loader": "^0.5.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"recompose": "^0.29.0",
"sinon": "^6.0.0",
"size-limit": "^0.19.0",
"webpack": "4.16.3",
"webpack-bundle-analyzer": "^2.9.1"
},
"engines": {
"node": ">=8.0.0"
},
"workspaces": [
"packages/*"
]
}