ruffle/web/package.json

45 lines
1.6 KiB
JSON
Raw Normal View History

2020-05-12 21:23:29 +00:00
{
"name": "ruffle",
"version": "0.1.0",
"description": "Root project of ruffle web",
"license": "(MIT OR Apache-2.0)",
"private": true,
"devDependencies": {
2021-10-01 18:10:27 +00:00
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"@wdio/cli": "^7.14.0",
"@wdio/local-runner": "^7.16.3",
2021-10-01 18:10:27 +00:00
"@wdio/mocha-framework": "^7.13.2",
"@wdio/spec-reporter": "^7.13.2",
"@wdio/static-server-service": "^7.13.2",
"chai": "^4.3.4",
"chai-html": "^2.0.1",
"chromedriver": "^94.0.0",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
2021-10-01 18:10:27 +00:00
"eslint-plugin-prettier": "^4.0.0",
"lerna": "^4.0.0",
2021-10-01 18:10:27 +00:00
"mocha": "^9.1.2",
"prettier": "^2.4.1",
"stylelint": "^13.13.1",
2021-04-26 18:34:44 +00:00
"stylelint-config-standard": "^22.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
2021-10-01 18:10:27 +00:00
"wdio-chromedriver-service": "^7.2.2",
"webpack": "^5.56.0",
"webpack-cli": "^4.8.0"
},
"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",
2020-05-17 22:37:33 +00:00
"demo": "lerna run --scope ruffle-demo serve --stream",
"test": "lerna run test --stream",
"docs": "lerna run docs --stream",
2021-09-25 10:48:21 +00:00
"lint": "eslint . && stylelint **.css",
"format": "eslint . --fix && stylelint --fix **.css"
}
2020-05-12 21:23:29 +00:00
}