scratch-paint/package.json

115 lines
3.9 KiB
JSON
Raw Normal View History

2017-07-13 14:03:48 -04:00
{
"name": "scratch-paint",
"version": "0.2.0",
2017-07-13 15:06:10 -04:00
"description": "Graphical User Interface for the Scratch 3.0 paint editor, which is used to make and edit sprites for use in projects.",
2017-07-14 11:29:12 -04:00
"main": "./dist/scratch-paint.js",
"browser": "./src/index.js",
2017-07-13 14:03:48 -04:00
"scripts": {
"build": "npm run clean && webpack --progress --colors --bail",
2017-07-14 11:29:12 -04:00
"clean": "rimraf ./dist && mkdirp dist && rimraf ./playground && mkdirp playground",
2017-07-13 15:30:06 -04:00
"deploy": "touch playground/.nojekyll && gh-pages -t -d playground -m \"Build for $(git log --pretty=format:%H -n1)\"",
"i18n:push": "tx-push-src scratch-editor paint-editor ./translations/en.json",
"i18n:src": "rimraf ./translations/messages && babel src > tmp.js && rimraf tmp.js && ./scripts/build-i18n-source.js ./translations/messages/ ./translations/",
2017-07-13 14:03:48 -04:00
"lint": "eslint . --ext .js,.jsx",
"start": "webpack-dev-server",
2017-10-13 13:33:04 -04:00
"test": "npm run lint && npm run unit && NODE_ENV=production npm run build",
2017-07-26 20:39:12 -04:00
"unit": "jest",
2017-07-13 14:03:48 -04:00
"watch": "webpack --progress --colors --watch"
},
"author": "Massachusetts Institute of Technology",
"license": "BSD-3-Clause",
2017-07-13 15:06:10 -04:00
"homepage": "https://github.com/LLK/scratch-paint#readme",
2017-07-13 14:03:48 -04:00
"repository": {
"type": "git",
2017-07-13 15:06:10 -04:00
"url": "git+ssh://git@github.com/LLK/scratch-paint.git"
2017-07-13 14:03:48 -04:00
},
"dependencies": {
"@scratch/paper": "0.11.20190729152410",
"classnames": "2.2.5",
"keymirror": "0.1.1",
"lodash.bindall": "4.4.0",
2018-08-29 15:29:13 -04:00
"lodash.omit": "4.5.0",
"minilog": "3.1.0",
"parse-color": "1.0.0",
"prop-types": "^15.5.10",
2019-07-18 13:52:33 -04:00
"scratch-svg-renderer": "0.2.0-prerelease.20190523193400"
},
2017-07-13 14:03:48 -04:00
"peerDependencies": {
2017-10-13 13:27:49 -04:00
"react": "^16",
"react-dom": "^16",
"react-intl": "^2",
"react-intl-redux": "^0.7",
"react-popover": "^0.5",
"react-redux": "^5",
"react-responsive": "^4",
"react-style-proptype": "^3",
"react-tooltip": "^3",
"redux": "^3"
2017-07-13 14:03:48 -04:00
},
"devDependencies": {
"autoprefixer": "9.6.1",
"babel-cli": "6.26.0",
2017-07-13 14:03:48 -04:00
"babel-core": "^6.23.1",
2018-02-09 16:04:45 -05:00
"babel-eslint": "^8.2.1",
"babel-jest": "^23.0.1",
2018-05-07 14:21:22 -04:00
"babel-loader": "^7.1.4",
"babel-plugin-react-intl": "3.0.1",
2017-07-13 14:03:48 -04:00
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-env": "^1.6.1",
2017-07-13 14:03:48 -04:00
"babel-preset-react": "^6.22.0",
2019-07-31 17:11:47 -04:00
"canvas-prebuilt": "^1.6.11",
"css-loader": "3.1.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^4.4.1",
2017-07-26 20:39:12 -04:00
"eslint-config-import": "^0.13.0",
2018-02-09 16:04:45 -05:00
"eslint-config-scratch": "^5.0.0",
2019-07-31 17:11:47 -04:00
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.2.1",
2017-07-13 14:03:48 -04:00
"gh-pages": "github:rschamp/gh-pages#publish-branch-to-subfolder",
"html-webpack-plugin": "3.2.0",
2018-02-09 16:04:45 -05:00
"jest": "^22.2.2",
"lodash.defaultsdeep": "4.6.1",
2017-07-13 14:03:48 -04:00
"mkdirp": "^0.5.1",
"postcss-import": "^12.0.0",
"postcss-loader": "^3.0.0",
"postcss-simple-vars": "^5.0.1",
2017-10-13 13:27:49 -04:00
"raf": "^3.4.0",
2018-01-11 18:53:16 -05:00
"react": "16.2.0",
2019-07-31 17:11:47 -04:00
"react-dom": "16.2.0",
"react-intl": "2.9.0",
"react-intl-redux": "2.0.0",
"react-popover": "0.5.10",
2019-07-31 17:11:47 -04:00
"react-redux": "5.0.7",
"react-responsive": "4.1.0",
"react-style-proptype": "3.2.2",
2017-10-13 13:27:49 -04:00
"react-test-renderer": "^16.0.0",
"react-tooltip": "3.8.4",
2018-02-09 16:04:45 -05:00
"redux": "3.7.2",
2017-07-26 20:39:12 -04:00
"redux-mock-store": "^1.2.3",
2017-07-13 14:03:48 -04:00
"redux-throttle": "0.1.1",
"regenerator-runtime": "^0.13.3",
2017-07-13 14:03:48 -04:00
"rimraf": "^2.6.1",
"scratch-l10n": "3.1.20181129221712",
"style-loader": "^0.23.1",
2019-07-31 17:11:47 -04:00
"svg-url-loader": "^3.0.0",
"tap": "^14.4.3",
"uglifyjs-webpack-plugin": "^2.0.1",
2019-07-31 17:11:47 -04:00
"url-loader": "^2.1.0",
2018-05-07 14:21:22 -04:00
"webpack": "^4.8.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.9"
2017-07-26 20:39:12 -04:00
},
"jest": {
2017-10-13 13:27:49 -04:00
"setupFiles": [
"raf/polyfill",
"<rootDir>/test/helpers/enzyme-setup.js"
],
"testURL": "http://localhost",
2017-07-26 20:39:12 -04:00
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/test/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/test/__mocks__/styleMock.js"
}
2017-07-13 14:03:48 -04:00
}
}