ruffle/web/package.json

52 lines
1.8 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,
"workspaces": [
"./packages/*"
],
"engines": {
"npm": ">=7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.30.3",
"@wdio/cli": "^7.20.1",
"@wdio/local-runner": "^7.19.5",
"@wdio/mocha-framework": "^7.20.3",
"@wdio/spec-reporter": "^7.19.5",
"@wdio/static-server-service": "^7.20.3",
"chai": "^4.3.6",
"chai-html": "^2.1.0",
"chromedriver": "^102.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
2021-10-01 18:10:27 +00:00
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"stylelint": "^14.8.5",
2022-01-16 14:39:52 +00:00
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^26.0.0",
2022-01-16 14:39:52 +00:00
"stylelint-prettier": "^2.0.0",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"wdio-chromedriver-service": "^7.3.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"build": "npm run build --workspaces",
"build:debug": "cross-env NODE_ENV=development CARGO_FEATURES=avm_debug npm run build",
"build:dual-wasm": "cross-env ENABLE_WASM_EXTENSIONS=true npm run build",
"demo": "npm start --workspace ruffle-demo",
"test": "npm test --workspaces --if-present",
"docs": "npm run docs --workspaces --if-present",
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
}