kopia lustrzana https://github.com/wagtail/wagtail
94 wiersze
2.4 KiB
JSON
94 wiersze
2.4 KiB
JSON
{
|
|
"name": "wagtail",
|
|
"version": "1.0.0",
|
|
"repository": "https://github.com/wagtail/wagtail",
|
|
"private": true,
|
|
"babel": {
|
|
"presets": [
|
|
[
|
|
"es2015",
|
|
{
|
|
"modules": false
|
|
}
|
|
],
|
|
"react"
|
|
],
|
|
"plugins": [
|
|
"lodash"
|
|
],
|
|
"env": {
|
|
"test": {
|
|
"presets": [
|
|
"es2015",
|
|
"react"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"jest": {
|
|
"setupFiles": [
|
|
"./client/tests/stubs.js",
|
|
"./client/tests/mock-fetch.js"
|
|
],
|
|
"snapshotSerializers": [
|
|
"enzyme-to-json/serializer"
|
|
]
|
|
},
|
|
"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",
|
|
"gulp-rename": "^1.2.2",
|
|
"gulp-sass": "^3.1.0",
|
|
"gulp-sourcemaps": "~1.5.2",
|
|
"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"
|
|
},
|
|
"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:css": "scss-lint",
|
|
"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/"
|
|
}
|
|
}
|