wagtail/package.json

93 wiersze
2.3 KiB
JSON
Czysty Zwykły widok Historia

2015-04-25 05:46:15 +00:00
{
"name": "wagtail",
"version": "1.0.0",
"repository": "https://github.com/wagtail/wagtail",
2015-04-25 05:46:15 +00:00
"private": true,
2017-06-07 13:09:09 +00:00
"babel": {
"presets": [
2017-06-12 15:28:57 +00:00
[
"es2015",
{
"modules": false
}
],
2017-06-07 13:09:09 +00:00
"react"
],
"plugins": [
"lodash"
2017-06-12 15:28:57 +00:00
],
"env": {
"test": {
"presets": [
"es2015",
"react"
]
}
}
2017-06-07 13:09:09 +00:00
},
"jest": {
"setupFiles": [
"./client/tests/stubs.js",
"./client/tests/mock-fetch.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
2015-04-25 05:46:15 +00:00
"devDependencies": {
"babel-core": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^2.9.0",
"eslint-config-wagtail": "0.1.1",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"gulp": "^3.9.1",
"gulp-autoprefixer": "~3.0.2",
2015-04-25 05:46:15 +00:00
"gulp-rename": "^1.2.2",
"gulp-sass": "3.1.0",
"gulp-sourcemaps": "~1.5.2",
2015-04-25 05:46:15 +00:00
"gulp-util": "~2.2.14",
"jest": "^20.0.4",
"mustache": "^2.2.1",
"react-addons-perf": "^15.4.2",
"react-test-renderer": "^15.5.4",
"redux-mock-store": "^1.2.2",
"webpack": "^2.6.1"
},
"dependencies": {
"focus-trap-react": "^3.0.3",
"lodash": "^4.17.4",
"object-assign": "^4.1.1",
"promise": "^7.1.1",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-transition-group": "^1.1.3",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"whatwg-fetch": "^2.0.2"
2015-04-25 05:46:15 +00:00
},
"scripts": {
"postinstall": "npm --prefix client install",
"build": "gulp build; webpack --config ./client/webpack/prod.config.js",
"watch": "webpack --config ./client/webpack/dev.config.js & gulp watch",
"start": "npm run watch",
"lint:js": "eslint --max-warnings 16 ./client",
"lint": "npm run lint:js",
"test": "npm run test:unit",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"test:unit:coverage": "jest --coverage",
"component": "node ./client/src/cli/index.js component --dir ./client/src/components/"
2015-04-25 05:46:15 +00:00
}
2015-04-25 05:48:06 +00:00
}