wagtail/package.json

84 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,
"engines": {
"node": ">= 4"
},
2015-04-25 05:46:15 +00:00
"browser": {},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {},
"jest": {
"rootDir": "client",
"setupFiles": [
"./tests/stubs.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
2015-04-25 05:46:15 +00:00
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-lodash": "^3.2.11",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"enzyme": "^2.3.0",
"enzyme-to-json": "^1.4.5",
"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",
"exports-loader": "^0.6.3",
"glob": "^7.0.0",
"gulp": "~3.8.11",
"gulp-autoprefixer": "~3.0.2",
2015-04-25 05:46:15 +00:00
"gulp-rename": "^1.2.2",
"gulp-sass": "~2.3.1",
"gulp-sourcemaps": "~1.5.2",
2015-04-25 05:46:15 +00:00
"gulp-util": "~2.2.14",
"imports-loader": "^0.6.5",
"jest": "^18.1.0",
"mustache": "^2.2.1",
"react-addons-test-utils": "^15.4.2",
"require-dir": "^0.3.0",
"webpack": "^1.12.14"
},
"dependencies": {
"focus-trap-react": "^3.0.2",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-actions": "^1.2.1",
"redux-thunk": "^2.2.0",
"whatwg-fetch": "^2.0.2"
2015-04-25 05:46:15 +00:00
},
"scripts": {
2016-03-07 07:23:15 +00:00
"postinstall": "cd ./client; npm install; cd ..",
"build": "gulp build; webpack --progress --colors --config ./client/webpack/prod.config.js",
"watch": "webpack --progress --colors --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
}