ruffle/web/package.json

45 lines
1.6 KiB
JSON

{
"name": "ruffle",
"version": "0.1.0",
"description": "Root project of ruffle web",
"license": "(MIT OR Apache-2.0)",
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@wdio/cli": "^7.16.10",
"@wdio/local-runner": "^7.16.10",
"@wdio/mocha-framework": "^7.16.6",
"@wdio/spec-reporter": "^7.16.9",
"@wdio/static-server-service": "^7.16.6",
"chai": "^4.3.4",
"chai-html": "^2.0.1",
"chromedriver": "^96.0.0",
"copy-webpack-plugin": "^10.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"lerna": "^4.0.0",
"mocha": "^9.1.3",
"prettier": "^2.5.0",
"stylelint": "^14.1.0",
"stylelint-config-standard": "^24.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"wdio-chromedriver-service": "^7.2.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
},
"scripts": {
"bootstrap": "npm install && lerna bootstrap --hoist",
"build": "lerna run build --stream",
"build:debug": "cross-env NODE_ENV=development CARGO_FEATURES=avm_debug npm run build",
"demo": "lerna run --scope ruffle-demo serve --stream",
"test": "lerna run test --stream",
"docs": "lerna run docs --stream",
"lint": "eslint . && stylelint **.css",
"format": "eslint . --fix && stylelint --fix **.css"
}
}