ruffle/web/package.json

56 lines
1.9 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.7.0",
"@typescript-eslint/parser": "^4.7.0",
"@wdio/cli": "^7.0.3",
"@wdio/local-runner": "^6.1.12",
"@wdio/mocha-framework": "^7.0.3",
"@wdio/spec-reporter": "^7.0.4",
"@wdio/static-server-service": "^6.0.16",
"@wdio/sync": "^7.0.3",
"archiver": "^5.0.0",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-html": "^1.3.0",
"chromedriver": "^88.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.1.3",
"html-webpack-plugin": "^5.0.0",
"lerna": "^3.22.1",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"sign-addon": "^3.0.0",
"source-map-loader": "^2.0.0",
2021-01-22 17:12:48 +00:00
"stylelint": "^13.9.0",
"stylelint-config-standard": "^20.0.0",
"temp-dir": "^2.0.0",
"ts-loader": "^8.0.11",
"typescript": "^4.0.5",
"wdio-chromedriver-service": "^6.0.3",
"webpack": "^5.1.3",
"webpack-cli": "^4.0.0"
},
"dependencies": {
"@types/source-map": "^0.5.2"
},
"scripts": {
"bootstrap": "npm install && lerna bootstrap --hoist",
"build": "lerna run build --stream",
"buildProduction": "lerna run build --stream -- --mode=production",
"build:avm_debug": "lerna run build --stream -- -- --env features=avm_debug",
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
}