forked from oliviertassinari/react-swipeable-views
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.53 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
{
"name": "react-swipeable-views-workspace",
"version": "0.14.4",
"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",
"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": "npm run build && lerna exec npm run prepublish && lerna publish"
},
"author": "Olivier Tassinari <olivier.tassinari@gmail.com> (https://github.com/oliviertassinari)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oliviertassinari/react-swipeable-views.git"
},
"devDependencies": {
"@babel/cli": "7.6.0",
"@babel/core": "7.6.0",
"@babel/plugin-transform-object-assign": "7.2.0",
"@babel/plugin-transform-runtime": "7.6.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-stage-1": "7.0.0",
"@babel/register": "7.6.0",
"@babel/runtime": "7.6.0",
"@material-ui/core": "^4.4.2",
"@material-ui/docs": "^1.0.0-alpha.3",
"@material-ui/icons": "^4.4.1",
"animated": "^0.2.2",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-preval": "^3.0.1",
"babel-plugin-react-remove-properties": "^0.3.0",
"babel-plugin-transform-dev-warning": "^0.1.1",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"chai": "^4.2.0",
"chai-shallow-deep-equal": "^1.4.6",
"clean-css": "^4.2.1",
"clipboard-copy": "^3.1.0",
"cross-env": "^5.2.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mocha": "^6.1.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"glob": "^7.1.4",
"jsdom": "^15.1.1",
"lerna": "^3.20.2",
"lz-string": "^1.4.4",
"mocha": "^6.2.0",
"next": "^9.0.5",
"nyc": "^14.1.1",
"postcss": "^7.0.18",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"raw-loader": "^3.1.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"recompose": "^0.30.0",
"sinon": "^7.4.2",
"size-limit": "^2.1.4",
"webpack": "4.40.1",
"webpack-bundle-analyzer": "^3.5.0"
},
"engines": {
"node": ">=10.0.0"
},
"workspaces": [
"packages/*"
]
}