forked from ruffle-rs/ruffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.82 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"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": "^6.1.12",
"@wdio/local-runner": "^6.1.12",
"@wdio/mocha-framework": "^6.1.8",
"@wdio/spec-reporter": "^6.1.12",
"@wdio/static-server-service": "^6.0.16",
"@wdio/sync": "^6.1.8",
"archiver": "^5.0.0",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-html": "^1.3.0",
"chromedriver": "^87.0.1",
"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": "^4.3.0",
"lerna": "^3.22.1",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"sign-addon": "^3.0.0",
"source-map-loader": "^1.1.2",
"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",
"demo": "lerna run --scope ruffle-demo serve --stream",
"test": "lerna run test --stream",
"docs": "lerna run docs --stream",
"format": "eslint . --fix",
"format:check": "eslint ."
}
}