static-cms/package.json

63 lines
2.1 KiB
JSON
Raw Normal View History

2016-02-25 00:45:56 -08:00
{
2018-07-06 18:56:28 -04:00
"scripts": {
2018-07-25 19:26:11 -04:00
"bootstrap": "yarn && lerna bootstrap",
2018-07-17 19:13:52 -04:00
"start": "npm run bootstrap && npm run watch",
2018-07-17 18:09:59 -04:00
"watch": "lerna run watch --parallel",
2018-07-25 19:26:11 -04:00
"build": "npm run clean && lerna run build",
2018-07-17 19:13:52 -04:00
"clean": "rimraf packages/*/dist",
2018-07-25 19:17:34 -04:00
"reset": "npm run clean && lerna clean --yes",
2018-07-25 19:26:11 -04:00
"test": "cross-env NODE_ENV=test jest --no-cache",
"dryrun": "lerna publish --skip-npm --skip-git",
"publish": "npm run bootstrap && npm run build && lerna publish",
"add-contributor": "all-contributors add"
2018-07-06 18:56:28 -04:00
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Opera versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Safari versions",
"last 2 iOS versions",
2017-10-16 12:29:45 -07:00
"last 2 ChromeAndroid versions"
],
2016-02-25 00:45:56 -08:00
"devDependencies": {
2018-07-23 12:30:15 -04:00
"@babel/cli": "^7.0.0-beta.54",
"@babel/core": "^7.0.0-beta.54",
2018-07-17 19:13:52 -04:00
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.54",
"@babel/plugin-proposal-export-default-from": "^7.0.0-beta.54",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/preset-react": "^7.0.0-beta.54",
"all-contributors-cli": "^4.4.0",
2018-07-25 19:17:34 -04:00
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.0",
2018-07-23 12:30:15 -04:00
"babel-loader": "^8.0.0-beta",
2018-07-06 18:56:28 -04:00
"babel-plugin-emotion": "^9.2.4",
2018-07-25 19:17:34 -04:00
"babel-plugin-inline-svg": "^1.0.0",
2018-07-17 11:37:17 -04:00
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.0.0",
2018-07-17 11:37:17 -04:00
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-export-extensions": "^6.22.0",
2018-07-03 15:47:15 -04:00
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
2018-05-15 16:37:59 -06:00
"cross-env": "^5.1.4",
"deep-equal": "^1.0.1",
2017-10-23 12:03:01 -06:00
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
2018-07-23 12:30:15 -04:00
"friendly-errors-webpack-plugin": "^1.7.0",
2018-07-25 19:17:34 -04:00
"jest": "^23.4.0",
"jest-cli": "^23.4.0",
2018-07-03 15:47:15 -04:00
"lerna": "^2.11.0",
"raf": "^3.4.0",
"react-test-renderer": "^16.0.0",
2018-07-17 19:13:52 -04:00
"rimraf": "^2.6.2",
2018-07-23 12:30:15 -04:00
"style-loader": "^0.21.0",
"svg-inline-loader": "^0.8.0"
2016-05-30 16:55:32 -07:00
},
2018-07-03 15:47:15 -04:00
"workspaces": [
"packages/*"
],
2018-07-25 19:17:34 -04:00
"private": true,
"dependencies": {
"jest-emotion": "^9.2.6"
}
}