ruffle/web/package.json

45 lines
1.5 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": {
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.5",
"@wdio/cli": "^7.9.0",
"@wdio/local-runner": "^7.9.0",
"@wdio/mocha-framework": "^7.9.0",
"@wdio/spec-reporter": "^7.9.0",
"@wdio/static-server-service": "^7.7.3",
"chai": "^4.3.4",
"chai-html": "^2.0.1",
"chromedriver": "^92.0.2",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"lerna": "^4.0.0",
"mocha": "^9.0.3",
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
2021-04-26 18:34:44 +00:00
"stylelint-config-standard": "^22.0.0",
"ts-loader": "^9.2.4",
"typescript": "^4.3.4",
"wdio-chromedriver-service": "^7.2.0",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2"
},
"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",
"format": "eslint . --fix",
"lint": "eslint . && stylelint **.css"
}
2020-05-12 21:23:29 +00:00
}